Added missing paren from previous commit.

This commit is contained in:
Taylor Otwell 2011-06-15 13:43:09 -07:00
parent 2413b9cc63
commit cd7e1eb664

View File

@ -53,7 +53,7 @@ class Finder {
{
$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));
}