Commit cd7e1eb6 authored by Taylor Otwell's avatar Taylor Otwell

Added missing paren from previous commit.

parent 2413b9cc
...@@ -53,7 +53,7 @@ class Finder { ...@@ -53,7 +53,7 @@ class Finder {
{ {
$route = $recursiveIterator->getSubIterator(); $route = $recursiveIterator->getSubIterator();
if (isset($route['name'] and $route['name'] == $name) if (isset($route['name']) and $route['name'] == $name)
{ {
return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route)); return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment