ControllerArguments.php 316 B

12345678910111213141516
  1. <?php
  2. namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
  3. use Symfony\Contracts\Translation\TranslatorInterface;
  4. class ControllerArguments
  5. {
  6. public function __invoke(TranslatorInterface $translator)
  7. {
  8. }
  9. public function index(TranslatorInterface $translator)
  10. {
  11. }
  12. }