| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 7 | final class TestCommand implements Command |
||
| 8 | { |
||
| 9 | private string $command; |
||
| 10 | private string $name; |
||
| 11 | |||
| 12 | 43 | public function __construct(string $command, string $name) |
|
| 13 | { |
||
| 14 | 43 | $this->command = $command; |
|
| 15 | 43 | $this->name = $name; |
|
| 16 | } |
||
| 17 | |||
| 18 | 1 | public function __toString(): string |
|
| 21 | } |
||
| 22 | } |
||
| 23 |