Preview: RunCommandContext.php
Size: 862 B
//opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/symfony/console/Messenger/RunCommandContext.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 RectorPrefix202411\Symfony\Component\Console\Messenger;
/**
* @author Kevin Bond <kevinbond@gmail.com>
*/
final class RunCommandContext
{
/**
* @readonly
* @var \Symfony\Component\Console\Messenger\RunCommandMessage
*/
public $message;
/**
* @readonly
* @var int
*/
public $exitCode;
/**
* @readonly
* @var string
*/
public $output;
public function __construct(RunCommandMessage $message, int $exitCode, string $output)
{
$this->message = $message;
$this->exitCode = $exitCode;
$this->output = $output;
}
}
Directory Contents
Dirs: 0 × Files: 3