mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-11 06:12:16 +00:00
Merge pull request #349 from skipperbent/feature-get-processed-routes
Added getProcessedRoutes method to Router class.
This commit is contained in:
@@ -545,6 +545,16 @@ class Router
|
|||||||
$this->bootManagers[] = $bootManager;
|
$this->bootManagers[] = $bootManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get routes that has been processed.
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getProcessedRoutes()
|
||||||
|
{
|
||||||
|
return $this->processedRoutes;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user