1 | <?php |
||
17 | class ClientListCommand extends Command |
||
18 | { |
||
19 | protected static $defaultName = 'api:client:list'; |
||
20 | |||
21 | /** |
||
22 | * @var ContainerInterface |
||
23 | */ |
||
24 | private $container; |
||
25 | |||
26 | /** |
||
27 | * ApiCreateClientCommand constructor. |
||
28 | * @param ContainerInterface $container |
||
29 | */ |
||
30 | 1 | public function __construct(ContainerInterface $container) |
|
35 | |||
36 | /** |
||
37 | * |
||
38 | * @throws \Symfony\Component\Console\Exception\InvalidArgumentException |
||
39 | */ |
||
40 | 1 | protected function configure() |
|
46 | |||
47 | /** |
||
48 | * @param InputInterface $input |
||
49 | * @param OutputInterface $output |
||
50 | * @return int|null|void |
||
51 | * @throws \Symfony\Component\Console\Exception\InvalidArgumentException |
||
52 | * @throws \Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException |
||
53 | */ |
||
54 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
71 | |||
72 | } |
||
73 |