@@ -79,7 +79,6 @@ discard block |
||
| 79 | 79 | * Constructor |
| 80 | 80 | * |
| 81 | 81 | * @param \Kambo\Router\Route\Collection $routeCollection |
| 82 | - * @param \Kambo\Router\Dispatchers\Interfaces\DispatcherInterface $dispatcher |
|
| 83 | 82 | * |
| 84 | 83 | */ |
| 85 | 84 | public function __construct( |
@@ -202,7 +201,7 @@ discard block |
||
| 202 | 201 | /** |
| 203 | 202 | * Prepare regex and parameters for each of routes. |
| 204 | 203 | * |
| 205 | - * @param array $routes array with instances of route object |
|
| 204 | + * @param Collection $routes array with instances of route object |
|
| 206 | 205 | * |
| 207 | 206 | * @return array transformed routes |
| 208 | 207 | */ |
@@ -36,9 +36,6 @@ discard block |
||
| 36 | 36 | /** |
| 37 | 37 | * Route constructor |
| 38 | 38 | * |
| 39 | - * @param String $method |
|
| 40 | - * @param String $url |
|
| 41 | - * @param Mixed $handler |
|
| 42 | 39 | */ |
| 43 | 40 | public function __construct($routeBuilder) |
| 44 | 41 | { |
@@ -154,7 +151,7 @@ discard block |
||
| 154 | 151 | /** |
| 155 | 152 | * Add a route to the collection. |
| 156 | 153 | * |
| 157 | - * @param Kambo\Router\Route\Route $route route which will be added into |
|
| 154 | + * @param Route $route route which will be added into |
|
| 158 | 155 | * collection |
| 159 | 156 | * |
| 160 | 157 | * @return self for fluent interface |
@@ -78,7 +78,6 @@ |
||
| 78 | 78 | /** |
| 79 | 79 | * Sets placeholders extracted from route. |
| 80 | 80 | * |
| 81 | - * @param mixed $parameters |
|
| 82 | 81 | * |
| 83 | 82 | * @return self for fluent interface |
| 84 | 83 | */ |
@@ -232,7 +232,6 @@ discard block |
||
| 232 | 232 | * @param mixed $parameters route parameters |
| 233 | 233 | * @param mixed $handler handler that should be executed |
| 234 | 234 | * @param mixed $matches found matched variables |
| 235 | - |
|
| 236 | 235 | * @return mixed |
| 237 | 236 | */ |
| 238 | 237 | private function resolveNamespace($parameters, $handler, $matches) |
@@ -288,7 +287,6 @@ discard block |
||
| 288 | 287 | * @param mixed $matches found matched variables |
| 289 | 288 | * @param mixed $parameters route parameters |
| 290 | 289 | * @param mixed $handlers handler that should be executed |
| 291 | - |
|
| 292 | 290 | * @return mixed |
| 293 | 291 | */ |
| 294 | 292 | private function getFunctionArgumentsControlers( |