1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Symfony\Component\Console\Event;
- @trigger_error(sprintf('The "%s" class is deprecated since Symfony 3.3 and will be removed in 4.0. Use the ConsoleErrorEvent instead.', ConsoleExceptionEvent::class), E_USER_DEPRECATED);
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- class ConsoleExceptionEvent extends ConsoleEvent
- {
- private $exception;
- private $exitCode;
- public function __construct(Command $command, InputInterface $input, OutputInterface $output, \Exception $exception, $exitCode)
- {
- parent::__construct($command, $input, $output);
- $this->setException($exception);
- $this->exitCode = (int) $exitCode;
- }
-
- public function getException()
- {
- return $this->exception;
- }
-
- public function setException(\Exception $exception)
- {
- $this->exception = $exception;
- }
-
- public function getExitCode()
- {
- return $this->exitCode;
- }
- }
|