| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class CommandArguments |
||
| 8 | { |
||
| 9 | private string $namespace; |
||
| 10 | private string $directory; |
||
| 11 | |||
| 12 | 11 | public function __construct(string $namespace, string $directory) |
|
| 13 | { |
||
| 14 | 11 | $this->namespace = $namespace; |
|
| 15 | 11 | $this->directory = $directory; |
|
| 16 | } |
||
| 17 | |||
| 18 | 8 | public function namespace(): string |
|
| 19 | { |
||
| 20 | 8 | return $this->namespace; |
|
| 21 | } |
||
| 22 | |||
| 23 | 8 | public function directory(): string |
|
| 26 | } |
||
| 27 | |||
| 28 | 5 | public function basename(): string |
|
| 33 |