Added getProcessedRoutes method to Router class.

This commit is contained in:
Simon Sessingo
2018-01-06 01:23:00 +01:00
parent f2d106c649
commit a102c70700
+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
*/