Browse Source

added comment to route finder.

Taylor Otwell 13 years ago
parent
commit
3541c05ba2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/route/finder.php

+ 2 - 0
system/route/finder.php

@@ -69,6 +69,8 @@ class Finder {
 	{
 		$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);