Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
17 | public function __construct(CommandAbstract $command, ?NamingAbstract $naming = null) |
||
18 | { |
||
19 | $this->command = $command; |
||
20 | $this->filesystem = new Filesystem(); |
||
21 | |||
22 | $this->naming = $naming; |
||
23 | |||
24 | if (is_null($naming) && $this->key) { |
||
25 | $this->naming = $this->command->naming[$this->key]; |
||
26 | } |
||
27 | } |
||
28 | |||
52 |