Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | final class AllActionsCommand extends AbstractApiCommand |
||
12 | { |
||
13 | private $commands = [ |
||
14 | 'action:add', |
||
15 | 'action:delete', |
||
16 | 'action:get', |
||
17 | 'action:gets', |
||
18 | 'action:update', |
||
19 | ]; |
||
20 | |||
21 | protected function configure() |
||
22 | { |
||
23 | parent::configure(); |
||
24 | $this->setName('action:all') |
||
25 | ->setDescription('All action controllers and support configuration.') |
||
26 | ->setHelp('This command creates all Actions for given entity.'); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
43 | } |
||
44 | } |
||
46 |