getSubIterator(); if (isset($route['name']) and $route['name'] == $name) { return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route)); } } } /** * Load all of the routes from the routes directory. * * All of the various route files will be merged together * into a single array that can be searched. * * @return array */ private static function load() { $routes = array(); foreach (glob(APP_PATH.'routes/*') as $file) { if (filetype($file) == 'file') { $routes = array_merge(require $file, $routes); } } return $routes; } }