// the APCu cache.
$this->fileCache = FileCacheFactory::
get('config',
['cache_backend_class' => NULL
]);
} /**
* Returns the path to the configuration file.
*
* @return string
* The path to the configuration file.
*/
public function getFilePath($name) { return $this->
getCollectionDirectory() . '/' .
$name . '.' .
static::
getFileExtension();
} /**
* Returns the file extension used by the file storage for all configuration files.
*
* @return string
* The file extension.
*/
public static function getFileExtension() { return 'yml';
}