TYPO3  7.6
ConsoleTerminateEvent.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
12 namespace Symfony\Component\Console\Event;
13 
17 
24 {
30  private $exitCode;
31 
33  {
34  parent::__construct($command, $input, $output);
35 
36  $this->setExitCode($exitCode);
37  }
38 
44  public function setExitCode($exitCode)
45  {
46  $this->exitCode = (int) $exitCode;
47  }
48 
54  public function getExitCode()
55  {
56  return $this->exitCode;
57  }
58 }