class Config_File
Config_File abstract class - an adapter implementing configurations, which use a file as a storage.
abstract class Config_File extends Config_Abstract
{
/*** File Read method, which is to be invoked within a certain adapter* @param string $name - configuration identifier, file path * @return array*/abstract protected function _readFile($name);
/*** Data Save method, which is to be invoked within a certain * adapter* @return boolean success*/abstract public function save();
}
comments powered by Disqus