1
0
Files
lkafu/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ControllerArguments.php
2020-08-06 14:50:07 +08:00

17 lines
316 B
PHP

<?php
namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
use Symfony\Contracts\Translation\TranslatorInterface;
class ControllerArguments
{
public function __invoke(TranslatorInterface $translator)
{
}
public function index(TranslatorInterface $translator)
{
}
}