From 82d8df9c3ef35da127f8c4655041f4a495660eb2 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 10 Mar 2012 22:30:56 -0500 Subject: [PATCH] Fix more coding standards. --- lib/Cake/Test/Case/Configure/IniReaderTest.php | 2 +- lib/Cake/Test/Case/Configure/PhpReaderTest.php | 3 ++- lib/Cake/basics.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Test/Case/Configure/IniReaderTest.php b/lib/Cake/Test/Case/Configure/IniReaderTest.php index d65fe4cc3..6c865b759 100644 --- a/lib/Cake/Test/Case/Configure/IniReaderTest.php +++ b/lib/Cake/Test/Case/Configure/IniReaderTest.php @@ -34,7 +34,7 @@ class IniReaderTest extends CakeTestCase { */ public function setUp() { parent::setUp(); - $this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config'. DS; + $this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS; } /** diff --git a/lib/Cake/Test/Case/Configure/PhpReaderTest.php b/lib/Cake/Test/Case/Configure/PhpReaderTest.php index 8b85e40ca..1be9dfc0b 100644 --- a/lib/Cake/Test/Case/Configure/PhpReaderTest.php +++ b/lib/Cake/Test/Case/Configure/PhpReaderTest.php @@ -19,6 +19,7 @@ App::uses('PhpReader', 'Configure'); class PhpReaderTest extends CakeTestCase { + /** * setup * @@ -26,7 +27,7 @@ class PhpReaderTest extends CakeTestCase { */ public function setUp() { parent::setUp(); - $this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config'. DS; + $this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS; } /** diff --git a/lib/Cake/basics.php b/lib/Cake/basics.php index d03f53c4d..8f9b68753 100644 --- a/lib/Cake/basics.php +++ b/lib/Cake/basics.php @@ -148,6 +148,7 @@ if (!function_exists('sortByKey')) { } return $out; } + } /** @@ -752,4 +753,3 @@ function convertSlash($string) { $string = str_replace('/', '_', $string); return $string; } -