Fix coding standards in Configure/

This commit is contained in:
mark_story 2012-03-03 17:36:59 -05:00
parent b06e15ce6f
commit c8b113ac91
3 changed files with 5 additions and 0 deletions

View file

@ -19,6 +19,7 @@
* @package Cake.Core
*/
interface ConfigReaderInterface {
/**
* Read method is used for reading configuration information from sources.
* These sources can either be static resources like files, or dynamic ones like
@ -28,4 +29,5 @@ interface ConfigReaderInterface {
* @return array An array of data to merge into the runtime configuration
*/
public function read($key);
}

View file

@ -134,4 +134,5 @@ class IniReader implements ConfigReaderInterface {
}
return $values;
}
}

View file

@ -27,6 +27,7 @@
* @package Cake.Configure
*/
class PhpReader implements ConfigReaderInterface {
/**
* The path this reader finds files on.
*
@ -86,4 +87,5 @@ class PhpReader implements ConfigReaderInterface {
}
return $config;
}
}