Merge pull request #349 from skipperbent/feature-get-processed-routes

Added getProcessedRoutes method to Router class.
This commit is contained in:
Simon Sessingø
2018-01-06 03:30:55 +01:00
committed by GitHub
+10
View File
@@ -545,6 +545,16 @@ class Router
$this->bootManagers[] = $bootManager;
}
/**
* Get routes that has been processed.
*
* @return array
*/
public function getProcessedRoutes()
{
return $this->processedRoutes;
}
/**
* @return array
*/