Browse Source

Merge pull request #1513 from dereuromark/2.4-return-early

2.4 return early
Mark 12 years ago
parent
commit
37cefe9f4f

+ 1 - 2
lib/Cake/Cache/Cache.php

@@ -538,9 +538,8 @@ class Cache {
 		}
 		if (isset(self::$_groups[$group])) {
 			return array($group => self::$_groups[$group]);
-		} else {
-			throw new CacheException(__d('cake_dev', 'Invalid cache group %s', $group));
 		}
+		throw new CacheException(__d('cake_dev', 'Invalid cache group %s', $group));
 	}
 
 }

+ 2 - 3
lib/Cake/Console/Command/SchemaShell.php

@@ -235,10 +235,9 @@ class SchemaShell extends AppShell {
 			if ($File->write($contents)) {
 				$this->out(__d('cake_console', 'SQL dump file created in %s', $File->pwd()));
 				return $this->_stop();
-			} else {
-				$this->err(__d('cake_console', 'SQL dump could not be created'));
-				return $this->_stop();
 			}
+			$this->err(__d('cake_console', 'SQL dump could not be created'));
+			return $this->_stop();
 		}
 		$this->out($contents);
 		return $contents;

+ 2 - 3
lib/Cake/Model/Behavior/TreeBehavior.php

@@ -789,10 +789,9 @@ class TreeBehavior extends ModelBehavior {
 		if ($node[$right] == $node[$left] + 1) {
 			if ($delete) {
 				return $Model->delete($id);
-			} else {
-				$Model->id = $id;
-				return $Model->saveField($parent, null);
 			}
+			$Model->id = $id;
+			return $Model->saveField($parent, null);
 		} elseif ($node[$parent]) {
 			list($parentNode) = array_values($Model->find('first', array(
 				'conditions' => array($scope, $Model->escapeField() => $node[$parent]),

+ 2 - 4
lib/Cake/View/Helper/HtmlHelper.php

@@ -556,9 +556,8 @@ class HtmlHelper extends AppHelper {
 
 		if (empty($options['block'])) {
 			return $out;
-		} else {
-			$this->_View->append($options['block'], $out);
 		}
+		$this->_View->append($options['block'], $out);
 	}
 
 /**
@@ -593,9 +592,8 @@ class HtmlHelper extends AppHelper {
 
 		if (empty($options['block'])) {
 			return $out;
-		} else {
-			$this->_View->append($options['block'], $out);
 		}
+		$this->_View->append($options['block'], $out);
 	}
 
 /**