Implement feedback changes to App\Router

- Add class PhpDoc
- Switch Router->routeCollector scope to protected
- Added getter for Router->routeCollector
- Added EOF new line
- Removed unused use statement
- Improved App->collectRoutes PhpDoc
This commit is contained in:
Hypolite Petovan 2019-04-04 07:29:26 -04:00
parent 350d3b51d4
commit 42b360f479
2 changed files with 20 additions and 5 deletions

View file

@ -1249,7 +1249,7 @@ class App
}
$router = new App\Router();
$this->collectRoutes($router->routeCollector);
$this->collectRoutes($router->getRouteCollector());
$this->module_class = $router->getModuleClass($this->cmd);
@ -1507,7 +1507,7 @@ class App
}
/**
* @brief Static declaration of Friendica routes.
* Static declaration of Friendica routes.
*
* Supports:
* - Route groups
@ -1518,6 +1518,7 @@ class App
*
* Handler must be the name of a class extending Friendica\BaseModule.
*
* @brief Static declaration of Friendica routes.
* @param RouteCollector $routeCollector
* @throws InternalServerErrorException
*/