Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
vendor
/
facade
/
flare-client-php
/
src
/
Context
/
Editing: ConsoleContext.php
<?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, ]; } }
Save
Cancel