Completed
Branch master (78ad18)
by Pierre
30:35
created
src/Reuse/TKernel.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,6 @@
 block discarded – undo
216 216
      * invoke action from a controller an return exec code.
217 217
      * for testing purpose return retValue if false
218 218
      *
219
-     * @param boolean $forceRetValue
220 219
      * @return mixed
221 220
      */
222 221
     protected function invokeAction(...$args)
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace Nymfonya\Component\Http\Reuse;
4 4
 
5
-use Nymfonya\Component\Http\Kernel;
5
+use Monolog\Logger;
6 6
 use Nymfonya\Component\Config;
7 7
 use Nymfonya\Component\Container;
8
+use Nymfonya\Component\Http\Kernel;
9
+use Nymfonya\Component\Http\Middleware;
8 10
 use Nymfonya\Component\Http\Request;
9 11
 use Nymfonya\Component\Http\Response;
10 12
 use Nymfonya\Component\Http\Router;
11
-use Nymfonya\Component\Http\Middleware;
12
-use Monolog\Logger;
13 13
 use \ReflectionClass;
14 14
 
15 15
 trait TKernel
Please login to merge, or discard this patch.
src/Router.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
     /**
48 48
      * instanciate
49 49
      *
50
-     * @param array $configRoutes
51 50
      * @param IRequest $request
52 51
      */
53 52
     public function __construct(IRoutes $routes, IRequest $request)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Nymfonya\Component\Http;
4 4
 
5
-use Nymfonya\Component\Http\Interfaces\IRoutes;
6
-use Nymfonya\Component\Http\Interfaces\IRoute;
7 5
 use Nymfonya\Component\Http\Interfaces\IRequest;
6
+use Nymfonya\Component\Http\Interfaces\IRoute;
8 7
 use Nymfonya\Component\Http\Interfaces\IRouter;
8
+use Nymfonya\Component\Http\Interfaces\IRoutes;
9 9
 
10 10
 class Router implements IRouter
11 11
 {
Please login to merge, or discard this patch.