Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(Generator $generator, $command, $config = []) |
||
17 | { |
||
18 | $commandPrefix = Arr::get($config, 'command_prefix', 'generate'); |
||
19 | $commandPrefix = empty($commandPrefix) === false ? $commandPrefix.':' : ''; |
||
20 | |||
21 | $this->generator = $generator; |
||
22 | $this->command = $command; |
||
23 | $this->name = $commandPrefix.$command; |
||
24 | |||
25 | parent::__construct(); |
||
26 | } |
||
27 | |||
45 |