You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatefunctioncacheConfig(array$config, $cachedConfigFile)
{
if (!ArrayValidator::isCacheable($config)) {
thrownewInvalidArgumentException('Cannot cached config from %s; does not return array', $config);
}
// cache the config
}
The text was updated successfully, but these errors were encountered:
Ability to check if the array configuration is cache-able or not. Will return false if the configuration is mapped to a closure.
Checking all loaded configuration:
It will reduce the following merge configuration logic in Zend\ConfigAggregator
Practical usage
The text was updated successfully, but these errors were encountered: