golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/symfony/console/Messenger
⬆️ Go Up
Upload
File/Folder
Size
Actions
RunCommandContext.php
862 B
Del
OK
RunCommandMessage.php
1.23 KB
Del
OK
RunCommandMessageHandler.php
1.78 KB
Del
OK
Edit: 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; } }
Save