浏览代码

Fix coding standards in Configure/

mark_story 14 年之前
父节点
当前提交
c8b113ac91
共有 3 个文件被更改,包括 5 次插入0 次删除
  1. 2 0
      lib/Cake/Configure/ConfigReaderInterface.php
  2. 1 0
      lib/Cake/Configure/IniReader.php
  3. 2 0
      lib/Cake/Configure/PhpReader.php

+ 2 - 0
lib/Cake/Configure/ConfigReaderInterface.php

@@ -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);
+
 }

+ 1 - 0
lib/Cake/Configure/IniReader.php

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

+ 2 - 0
lib/Cake/Configure/PhpReader.php

@@ -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;
 	}
+
 }