Вход Регистрация
Файл: forsoc.ru/vendor/symfony/console/Symfony/Component/Console/Event/ConsoleTerminateEvent.php
Строк: 70
<?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 SymfonyComponentConsoleEvent;

use 
SymfonyComponentConsoleCommandCommand;
use 
SymfonyComponentConsoleInputInputInterface;
use 
SymfonyComponentConsoleOutputOutputInterface;

/**
 * Allows to manipulate the exit code of a command after its execution.
 *
 * @author Francesco Levorato <git@flevour.net>
 */
class ConsoleTerminateEvent extends ConsoleEvent
{
    
/**
     * The exit code of the command.
     *
     * @var int
     */
    
private $exitCode;

    public function 
__construct(Command $commandInputInterface $inputOutputInterface $output$exitCode)
    {
        
parent::__construct($command$input$output);

        
$this->setExitCode($exitCode);
    }

    
/**
     * Sets the exit code.
     *
     * @param int $exitCode The command exit code
     */
    
public function setExitCode($exitCode)
    {
        
$this->exitCode $exitCode;
    }

    
/**
     * Gets the exit code.
     *
     * @return int The command exit code
     */
    
public function getExitCode()
    {
        return 
$this->exitCode;
    }
}
Онлайн: 0
Реклама