Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
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 | public function __construct(string $alias, string $bin, bool $unsigned) |
||
14 | { |
||
15 | $this->alias = $alias; |
||
16 | $this->bin = $bin; |
||
17 | $this->unsigned = $unsigned; |
||
18 | } |
||
19 | |||
20 | public function __toString(): string |
||
33 | ); |
||
34 | } |
||
36 |