1 | <?php |
||
14 | abstract class Command extends BaseCommand |
||
15 | { |
||
16 | /** |
||
17 | * @var \GuzzleHttp\Client |
||
18 | */ |
||
19 | protected $client; |
||
20 | |||
21 | /** |
||
22 | * Constructor. |
||
23 | * |
||
24 | * @param \GuzzleHttp\Client $client |
||
25 | */ |
||
26 | public function __construct(Client $client = null) |
||
36 | |||
37 | /** |
||
38 | * Initialize command with custom client. |
||
39 | * |
||
40 | * @param Symfony\Component\Console\Input\InputInterface $input |
||
41 | * @param Symfony\Component\Console\Output\OutpuInterface $output |
||
42 | */ |
||
43 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
60 | } |
||
61 |