ViewEvent.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpKernel\HttpKernelInterface;
  13. /**
  14. * Allows to create a response for the return value of a controller.
  15. *
  16. * Call setResponse() to set the response that will be returned for the
  17. * current request. The propagation of this event is stopped as soon as a
  18. * response is set.
  19. *
  20. * @author Bernhard Schussek <bschussek@gmail.com>
  21. */
  22. final class ViewEvent extends RequestEvent
  23. {
  24. public function __construct(
  25. HttpKernelInterface $kernel,
  26. Request $request,
  27. int $requestType,
  28. private mixed $controllerResult,
  29. public readonly ?ControllerArgumentsEvent $controllerArgumentsEvent = null,
  30. ) {
  31. parent::__construct($kernel, $request, $requestType);
  32. }
  33. public function getControllerResult(): mixed
  34. {
  35. return $this->controllerResult;
  36. }
  37. public function setControllerResult(mixed $controllerResult): void
  38. {
  39. $this->controllerResult = $controllerResult;
  40. }
  41. }