Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
32 | public function __construct( |
||
33 | string $path, |
||
34 | string $workingDirectory, |
||
35 | bool $hidden, |
||
36 | ?string $namespace = null |
||
37 | ) { |
||
38 | $this->namespace = $namespace; |
||
39 | $this->hidden = $hidden; |
||
40 | $this->path = $path; |
||
41 | $this->workingDirectory = $workingDirectory; |
||
42 | } |
||
43 | |||
72 |