Conditions | 1 |
Paths | 1 |
Total Lines | 27 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function toArray() |
||
38 | { |
||
39 | return array_replace_recursive( |
||
40 | [ |
||
41 | 'service_manager' => [ |
||
42 | 'factories' => [Adapter::class => ProfilingAdapterFactory::class], |
||
43 | ], |
||
44 | 'view_manager' => [ |
||
45 | 'display_not_found_reason' => true, |
||
46 | 'display_exceptions' => true, |
||
47 | ], |
||
48 | 'asset_manager' => [ |
||
49 | 'caching' => [ |
||
50 | 'default' => [ |
||
51 | 'cache' => 'FilePath', |
||
52 | 'options' => ['dir' => $this->dir . '/../../public'], |
||
53 | ], |
||
54 | 'favicon.ico' => [ |
||
55 | 'cache' => FilesystemCache::class, |
||
56 | 'options' => ['dir' => 'tmp/cache/common/assets'], |
||
57 | ], |
||
58 | ], |
||
59 | ], |
||
60 | ], |
||
61 | $this->override |
||
62 | ); |
||
63 | } |
||
64 | } |
||
65 |