From c8b113ac9147c279cd5bd58a05b3a56493d86d46 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 3 Mar 2012 17:36:59 -0500 Subject: [PATCH] Fix coding standards in Configure/ --- lib/Cake/Configure/ConfigReaderInterface.php | 2 ++ lib/Cake/Configure/IniReader.php | 1 + lib/Cake/Configure/PhpReader.php | 2 ++ 3 files changed, 5 insertions(+) diff --git a/lib/Cake/Configure/ConfigReaderInterface.php b/lib/Cake/Configure/ConfigReaderInterface.php index 806cac654..498b81dcd 100644 --- a/lib/Cake/Configure/ConfigReaderInterface.php +++ b/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); + } diff --git a/lib/Cake/Configure/IniReader.php b/lib/Cake/Configure/IniReader.php index 4efb03744..4664df031 100644 --- a/lib/Cake/Configure/IniReader.php +++ b/lib/Cake/Configure/IniReader.php @@ -134,4 +134,5 @@ class IniReader implements ConfigReaderInterface { } return $values; } + } diff --git a/lib/Cake/Configure/PhpReader.php b/lib/Cake/Configure/PhpReader.php index b6682d910..982826769 100644 --- a/lib/Cake/Configure/PhpReader.php +++ b/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; } + }