Browse Source

Refactor the route finder.

Taylor Otwell 13 years ago
parent
commit
b25edfaf9b
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/routing/finder.php

+ 1 - 4
system/routing/finder.php

@@ -18,10 +18,7 @@ class Finder {
 	 */
 	public static function find($name, $routes)
 	{
-		if (array_key_exists($name, static::$names))
-		{
-			return static::$names[$name];
-		}
+		if (array_key_exists($name, static::$names)) return static::$names[$name];
 
 		$arrayIterator = new \RecursiveArrayIterator($routes);