Dashboard sipadu mbip
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ControllerEvent.php 662B

123456789101112131415161718192021222324252627
  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. class ControllerEvent extends FilterControllerEvent
  23. {
  24. }