Files
yii2/tests/framework/di/stubs/Variadic.php
Alexander Makarov fb23b0d0ea Code style fixes
2017-11-01 02:43:02 +03:00

20 lines
339 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\di\stubs;
/**
* @author Sam Mousa <sam@mousa.nl>
* @since 2.0.13
*/
class Variadic
{
public function __construct(QuxInterface ...$quxes)
{
}
}