Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ControllerArgumentsEvent.php 758B

12345678910111213141516171819202122232425262728
  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. class ControllerArgumentsEvent extends FilterControllerArgumentsEvent
  24. {
  25. }