Skip to content

Commit cedbb16

Browse files
committed
Fixed configuration example
The example was missing out the ```module_listener_options``` array and therefore the example-configuration would not have worked. That's fixed now
1 parent dd6ebe3 commit cedbb16

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

config/autoload/local.php.dist

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ return array(
1515
// Whether or not to enable a configuration cache.
1616
// If enabled, the merged configuration will be cached and used in
1717
// subsequent requests.
18-
//'config_cache_enabled' => false,
19-
// The key used to create the configuration cache file name.
20-
//'config_cache_key' => 'module_config_cache',
21-
// The path in which to cache merged configuration.
22-
//'cache_dir' => './data/cache',
23-
// ...
18+
//'module_listener_options' => array(
19+
// 'config_cache_enabled' => false,
20+
// // The key used to create the configuration cache file name.
21+
// 'config_cache_key' => 'module_config_cache',
22+
// // The path in which to cache merged configuration.
23+
// 'cache_dir' => './data/cache',
24+
// ...
25+
// )
2426
);

0 commit comments

Comments
 (0)