Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
37 | public function __construct(string $directory, string $scriptName, string $environment = null, $description = '') |
||
38 | { |
||
39 | $this->directory = $directory; |
||
40 | $this->scriptName = $scriptName; |
||
41 | $this->environment = $environment; |
||
42 | $this->description = $description; |
||
43 | } |
||
44 | |||
91 |