Browse Source

Fix CS errors

ADmad 13 years ago
parent
commit
d809b1480e

+ 1 - 1
lib/Cake/Model/Behavior/TreeBehavior.php

@@ -673,7 +673,7 @@ class TreeBehavior extends ModelBehavior {
 		$hasChildren = (bool)$children;
 
 		if (!is_null($parentId)) {
-			if($hasChildren) {
+			if ($hasChildren) {
 				$Model->updateAll(
 					array($this->settings[$Model->alias]['left'] => $counter),
 					array($Model->escapeField() => $parentId)

+ 2 - 1
lib/Cake/Test/Case/Controller/Component/Auth/BasicAuthenticateTest.php

@@ -139,7 +139,8 @@ class BasicAuthenticateTest extends CakeTestCase {
 
 		try {
 			$this->auth->unauthenticated($request, $this->response);
-		} catch (UnauthorizedException $e) {}
+		} catch (UnauthorizedException $e) {
+		}
 
 		$this->assertNotEmpty($e);
 

+ 2 - 1
lib/Cake/Test/Case/Controller/Component/Auth/DigestAuthenticateTest.php

@@ -137,7 +137,8 @@ DIGEST;
 
 		try {
 			$this->auth->unauthenticated($request, $this->response);
-		} catch (UnauthorizedException $e) {}
+		} catch (UnauthorizedException $e) {
+		}
 
 		$this->assertNotEmpty($e);
 

+ 10 - 10
lib/Cake/Test/Case/View/Helper/TextHelperTest.php

@@ -345,24 +345,24 @@ class TextHelperTest extends CakeTestCase {
 <p>This is a test text</p>
 
 TEXT;
-    		$result = $this->Text->autoParagraph($text);
-    		$text = 'This is a <br/> <BR> test text';
-    		$expected = <<<TEXT
+		$result = $this->Text->autoParagraph($text);
+		$text = 'This is a <br/> <BR> test text';
+		$expected = <<<TEXT
 <p>This is a </p>
 <p> test text</p>
 
 TEXT;
-    		$result = $this->Text->autoParagraph($text);
-    		$this->assertEquals($expected, $result);
-    		$result = $this->Text->autoParagraph($text);
-    		$text = 'This is a <BR id="test"/><br class="test"> test text';
-    		$expected = <<<TEXT
+		$result = $this->Text->autoParagraph($text);
+		$this->assertEquals($expected, $result);
+		$result = $this->Text->autoParagraph($text);
+		$text = 'This is a <BR id="test"/><br class="test"> test text';
+		$expected = <<<TEXT
 <p>This is a </p>
 <p> test text</p>
 
 TEXT;
-    		$result = $this->Text->autoParagraph($text);
-    		$this->assertEquals($expected, $result);
+		$result = $this->Text->autoParagraph($text);
+		$this->assertEquals($expected, $result);
 		$text = <<<TEXT
 This is a test text.
 This is a line return.

+ 1 - 2
lib/Cake/Utility/Validation.php

@@ -618,8 +618,7 @@ class Validation {
 			switch ($country) {
 				case 'us':
 				case 'ca':
-				// deprecated three-letter-code
-				case 'can':
+				case 'can': // deprecated three-letter-code
 				case 'all':
 					// includes all NANPA members.
 					// see http://en.wikipedia.org/wiki/North_American_Numbering_Plan#List_of_NANPA_countries_and_territories

+ 1 - 1
lib/Cake/View/Helper/TextHelper.php

@@ -250,7 +250,7 @@ class TextHelper extends AppHelper {
 		}
 		return $text;
 	}
-  
+
 /**
  * @see String::stripLinks()
  *