Total Complexity | 3 |
Total Lines | 23 |
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 | private $unsigned; |
||
12 | |||
13 | 7 | public function __construct(string $alias, string $bin, bool $unsigned) |
|
14 | { |
||
15 | 7 | $this->alias = $alias; |
|
16 | 7 | $this->bin = $bin; |
|
17 | 7 | $this->unsigned = $unsigned; |
|
18 | } |
||
19 | |||
20 | 5 | public function __toString(): string |
|
30 | ); |
||
31 | } |
||
33 |