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