Remove comment bloat from Route\Finder.

This commit is contained in:
Taylor Otwell 2011-07-07 09:17:31 -07:00
parent 1a4a7cbbab
commit 0767fa5027
1 changed files with 0 additions and 2 deletions

View File

@ -34,8 +34,6 @@ public static function find($name)
return static::$names[$name]; return static::$names[$name];
} }
// We haven't located the route before, so we'll need to iterate through each
// route to find the matching name.
$arrayIterator = new \RecursiveArrayIterator(static::$routes); $arrayIterator = new \RecursiveArrayIterator(static::$routes);
$recursiveIterator = new \RecursiveIteratorIterator($arrayIterator); $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);