mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-20 17:42:59 +00:00
17 lines
316 B
PHP
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)
|
|
{
|
|
}
|
|
}
|