Total Complexity | 2 |
Total Lines | 14 |
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 | |||
12 | public function __construct(string $alias, string $bin) |
||
13 | { |
||
14 | $this->alias = $alias; |
||
15 | $this->bin = $bin; |
||
16 | } |
||
17 | |||
18 | public function __toString(): string |
||
21 | } |
||
22 | } |
||
23 |