Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | final class ComposerBinPluginCommand implements Command |
||
8 | { |
||
9 | private $package; |
||
10 | private $namespace; |
||
11 | |||
12 | 10 | public function __construct(string $package, string $namespace) |
|
16 | } |
||
17 | |||
18 | 1 | public function __toString(): string |
|
21 | } |
||
22 | |||
23 | 3 | public function package(): string |
|
24 | { |
||
25 | 3 | return $this->package; |
|
26 | } |
||
27 | |||
28 | 3 | public function namespace(): string |
|
31 | } |
||
32 | } |
||
33 |