Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
13 | 14 | public function __construct(string $name, string $summary, string $website, Command $command, Command $testCommand) |
|
14 | { |
||
15 | 14 | $this->name = $name; |
|
16 | 14 | $this->summary = $summary; |
|
17 | 14 | $this->website = $website; |
|
18 | 14 | $this->command = $command; |
|
19 | 14 | $this->testCommand = $testCommand; |
|
20 | } |
||
47 |