No Description

ControllerEvent.php 693B

123456789101112131415161718192021222324252627282930
  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 a controller callable.
  13. *
  14. * You can call getController() to retrieve the current controller. With
  15. * setController() you can set a new controller that is used in the processing
  16. * of the request.
  17. *
  18. * Controllers should be callables.
  19. *
  20. * @author Bernhard Schussek <bschussek@gmail.com>
  21. *
  22. * @final since Symfony 4.4
  23. */
  24. class ControllerEvent extends FilterControllerEvent
  25. {
  26. }