Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
43 | public function __construct( |
||
44 | array $commandPaths = [], |
||
45 | array $dynamicVariables = [], |
||
46 | array $constants = [], |
||
47 | array $templates = [], |
||
48 | array $dotenvPaths = [] |
||
49 | ) { |
||
50 | $this->commandPaths = $commandPaths; |
||
51 | $this->dynamicVariables = $dynamicVariables; |
||
52 | $this->constants = $constants; |
||
53 | $this->templates = $templates; |
||
54 | $this->dotenvPaths = $dotenvPaths; |
||
55 | } |
||
56 | |||
97 |