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(); // Since route files can be nested deep within the route directory, we need to // recursively spin through the directory to find every file. $directoryIterator = new \RecursiveDirectoryIterator(APP_PATH.'routes'); $recursiveIterator = new \RecursiveIteratorIterator($directoryIterator, \RecursiveIteratorIterator::SELF_FIRST); foreach ($recursiveIterator as $file) { if (filetype($file) === 'file' and strpos($file, EXT) !== false) { $routes = array_merge(require $file, $routes); } } return $routes; } }