1 | <?php declare(strict_types=1); |
||
5 | class RuntimeParameters |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | private $appParams; |
||
11 | |||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | private $overwrites; |
||
16 | |||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | private $commands; |
||
21 | |||
22 | public function __construct( |
||
31 | |||
32 | public function getAppParams(): array |
||
36 | |||
37 | public function getOverwrites(): array |
||
41 | |||
42 | public function getCommands(): array |
||
46 | } |
||
47 |