Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | final class ComposerBinPluginLinkCommand implements Command |
||
8 | { |
||
9 | private string $source; |
||
10 | private string $target; |
||
11 | private string $namespace; |
||
12 | |||
13 | 5 | public function __construct(string $source, string $target, string $namespace) |
|
14 | { |
||
15 | 5 | $this->source = $source; |
|
16 | 5 | $this->target = $target; |
|
17 | 5 | $this->namespace = $namespace; |
|
18 | } |
||
19 | |||
20 | 3 | public function __toString(): string |
|
27 | 3 | ); |
|
28 | } |
||
30 |