![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/rector/rector/vendor/symfony/console/Debug/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace RectorPrefix202410\Symfony\Component\Console\Debug; use RectorPrefix202410\Symfony\Component\Console\Command\TraceableCommand; use RectorPrefix202410\Symfony\Component\HttpFoundation\Request; use RectorPrefix202410\Symfony\Component\HttpFoundation\Response; /** * @internal */ final class CliRequest extends Request { /** * @readonly * @var \Symfony\Component\Console\Command\TraceableCommand */ public $command; public function __construct(TraceableCommand $command) { $this->command = $command; parent::__construct(attributes: ['_controller' => \get_class($command->command), '_virtual_type' => 'command'], server: $_SERVER); } // Methods below allow to populate a profile, thus enable search and filtering public function getUri() : string { if ($this->server->has('SYMFONY_CLI_BINARY_NAME')) { $binary = $this->server->get('SYMFONY_CLI_BINARY_NAME') . ' console'; } else { $binary = $this->server->get('argv')[0]; } return $binary . ' ' . $this->command->input; } public function getMethod() : string { return $this->command->isInteractive ? 'INTERACTIVE' : 'BATCH'; } public function getResponse() : Response { return new class($this->command->exitCode) extends Response { /** * @readonly * @var int */ private $exitCode; public function __construct(int $exitCode) { $this->exitCode = $exitCode; parent::__construct(); } public function getStatusCode() : int { return $this->exitCode; } }; } public function getClientIp() : string { $application = $this->command->getApplication(); return $application->getName() . ' ' . $application->getVersion(); } }