D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
facade
/
flare-client-php
/
src
/
Context
/
Filename :
ConsoleContext.php
back
Copy
<?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, ]; } }