暫無描述

ControllerArgumentsEvent.php 789B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpKernel\Event;
  11. /**
  12. * Allows filtering of controller arguments.
  13. *
  14. * You can call getController() to retrieve the controller and getArguments
  15. * to retrieve the current arguments. With setArguments() you can replace
  16. * arguments that are used to call the controller.
  17. *
  18. * Arguments set in the event must be compatible with the signature of the
  19. * controller.
  20. *
  21. * @author Christophe Coevoet <stof@notk.org>
  22. *
  23. * @final since Symfony 4.4
  24. */
  25. class ControllerArgumentsEvent extends FilterControllerArgumentsEvent
  26. {
  27. }