Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function toArray() |
||
27 | { |
||
28 | return array_replace_recursive( |
||
29 | $this->options, |
||
30 | [ |
||
31 | 'modules' => [ |
||
32 | 110 => 'WebinoDev', |
||
33 | 130 => 'AssetManager', |
||
34 | ], |
||
35 | 'module_listener_options' => [ |
||
36 | 'config_cache_enabled' => false, |
||
37 | 'module_map_cache_enabled' => false, |
||
38 | 'check_dependencies' => true, |
||
39 | ], |
||
40 | 'webino_debug' => [ |
||
41 | 'enabled' => 'cli' !== PHP_SAPI, |
||
42 | 'mode' => false, |
||
43 | 'bar' => true, |
||
44 | ], |
||
45 | ] |
||
46 | ); |
||
47 | } |
||
48 | } |
||
49 |