Browse Source

Refactoring Arr class.

Taylor Otwell 13 years ago
parent
commit
ed52c19e05
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/arr.php

+ 1 - 4
system/arr.php

@@ -15,10 +15,7 @@ class Arr {
 	 */
 	public static function get($array, $key, $default = null)
 	{
-		if (is_null($key))
-		{
-			return $array;
-		}
+		if (is_null($key)) return $array;
 
 		foreach (explode('.', $key) as $segment)
 		{