File "ConsoleContext.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/flare-client-php/src/Context/ConsoleContext.php
File size: 380 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Facade\FlareClient\Context;
class ConsoleContext implements ContextInterface
{
/** @var array */
private $arguments = [];
public function __construct(array $arguments = [])
{
$this->arguments = $arguments;
}
public function toArray(): array
{
return [
'arguments' => $this->arguments,
];
}
}