rector/vendor/symfony/console/Event/ConsoleTerminateEvent.php
Tomas Votruba fcfef6acab Updated Rector to commit 529eb40360f0a40a03bdaeb0e657fbaaec2a1c02
529eb40360 [DowngradePhp80] Handle both DowngradeTypedPropertyRector and DowngradeMixedTypeDeclarationRector Name parameter (#591)
2021-08-04 07:34:48 +00:00

41 lines
1.4 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix20210804\Symfony\Component\Console\Event;
use RectorPrefix20210804\Symfony\Component\Console\Command\Command;
use RectorPrefix20210804\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix20210804\Symfony\Component\Console\Output\OutputInterface;
/**
* Allows to manipulate the exit code of a command after its execution.
*
* @author Francesco Levorato <git@flevour.net>
*/
final class ConsoleTerminateEvent extends \RectorPrefix20210804\Symfony\Component\Console\Event\ConsoleEvent
{
private $exitCode;
public function __construct(\RectorPrefix20210804\Symfony\Component\Console\Command\Command $command, \RectorPrefix20210804\Symfony\Component\Console\Input\InputInterface $input, \RectorPrefix20210804\Symfony\Component\Console\Output\OutputInterface $output, int $exitCode)
{
parent::__construct($command, $input, $output);
$this->setExitCode($exitCode);
}
/**
* @param int $exitCode
*/
public function setExitCode($exitCode) : void
{
$this->exitCode = $exitCode;
}
public function getExitCode() : int
{
return $this->exitCode;
}
}