Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct( |
||
19 | ContainerInterface $dic |
||
20 | ) { |
||
21 | $this->dic = $dic; |
||
22 | |||
23 | parent::__construct( |
||
24 | 'system:generate', |
||
25 | 'Generates empty systems' |
||
26 | ); |
||
27 | |||
28 | $this |
||
29 | ->argument( |
||
30 | '<layerid>', |
||
31 | 'Id of the map layer' |
||
32 | ) |
||
33 | ->usage( |
||
34 | '<bold> $0 system:generate 1</end> <comment></end> ## Generates star systems for the layer<eol/>' |
||
35 | ); |
||
52 |