Remove comment bloat from Route\Finder class.
This commit is contained in:
parent
ae9824f80b
commit
0d48fba1be
|
@ -34,10 +34,8 @@ 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
|
||||||
// We haven't located the route before, so we'll need to
|
// route to find the matching name.
|
||||||
// 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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue