Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
49 | public function __construct( |
||
50 | bool $hidden, |
||
51 | array $commandPaths = [], |
||
52 | array $dynamicVariables = [], |
||
53 | array $constants = [], |
||
54 | array $templates = [], |
||
55 | array $dotenvPaths = [] |
||
56 | ) { |
||
57 | $this->hidden = $hidden; |
||
58 | $this->commandPaths = $commandPaths; |
||
59 | $this->dynamicVariables = $dynamicVariables; |
||
60 | $this->constants = $constants; |
||
61 | $this->templates = $templates; |
||
62 | $this->dotenvPaths = $dotenvPaths; |
||
63 | } |
||
64 | |||
113 |