PATH:
home
/
nappmpmd
/
mamza.xyz
/
wp-content
/
plugins
/
adfoxly
/
vendor
/
bugsnag
/
bugsnag
/
src
/
Request
<?php namespace Bugsnag\Request; class ConsoleRequest implements RequestInterface { /** * The unformated console command. * * @var string[] */ protected $command; /** * Create a new console request instance. * * @param string[] $command an array of the console command input * * @return void */ public function __construct(array $command) { $this->command = $command; } /** * Are we currently processing a request? * * @return bool */ public function isRequest() { return false; } /** * Get the session data. * * @return array */ public function getSession() { return []; } /** * Get the cookies. * * @return array */ public function getCookies() { return []; } /** * Get the request formatted as meta data. * * @return array */ public function getMetaData() { if (count($this->command) == 0) { return ['console' => [ 'Command' => 'Command could not be retrieved', ], ]; } $commandString = implode(' ', $this->command); $primaryCommand = $this->command[0]; $arguments = []; $options = []; foreach (array_slice($this->command, 1) as $arg) { if (isset($arg[0]) && $arg[0] === '-') { $options[] = $arg; } else { $arguments[] = $arg; } } $data = [ 'Input' => $commandString, 'Command' => $primaryCommand, 'Arguments' => $arguments, 'Options' => $options, ]; return ['console' => $data]; } /** * Get the request context. * * @return string|null */ public function getContext() { return implode(' ', array_slice($this->command, 0, 4)); } /** * Get the request user id. * * @return string|null */ public function getUserId() { return null; } }
[+]
..
[-] NullRequest.php
[edit]
[-] RequestInterface.php
[edit]
[-] BasicResolver.php
[edit]
[-] PhpRequest.php
[edit]
[-] ConsoleRequest.php
[edit]
[-] ResolverInterface.php
[edit]