Remove comment bloat from Route\Finder class.

This commit is contained in:
Taylor Otwell
2011-07-07 08:57:30 -07:00
parent ae9824f80b
commit 0d48fba1be

View File

@@ -34,10 +34,8 @@ class Finder {
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.
// ---------------------------------------------------------
// 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);
$recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);