Completed
Push — master ( af60cd...8a56ea )
by Pierre
02:00
created
src/Interfaces/HeadersInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -18,6 +18,7 @@
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * instanciate
21
+     * @return void
21 22
      */
22 23
     public function __construct();
23 24
 
Please login to merge, or discard this patch.
src/Interfaces/RouterInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      *
18 18
      * @param RoutesInterface $routes
19 19
      * @param RequestInterface $request
20
+     * @return Router
20 21
      */
21 22
     public function __construct(RoutesInterface $routes, RequestInterface $request);
22 23
 
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Nymfonya\Component\Http\Interfaces;
4 4
 
5 5
 use Nymfonya\Component\Http\Interfaces\RequestInterface;
6
-use Nymfonya\Component\Http\Interfaces\RoutesInterface;
7 6
 use Nymfonya\Component\Http\Interfaces\RouteInterface;
7
+use Nymfonya\Component\Http\Interfaces\RoutesInterface;
8 8
 use Nymfonya\Component\Http\Router;
9 9
 
10 10
 interface RouterInterface
Please login to merge, or discard this patch.
src/Request.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Nymfonya\Component\Http;
4 4
 
5
-use Nymfonya\Component\Http\Interfaces\RequestInterface;
6 5
 use Nymfonya\Component\Http\Interfaces\HeadersInterface;
6
+use Nymfonya\Component\Http\Interfaces\RequestInterface;
7 7
 use Nymfonya\Component\Http\Session;
8 8
 
9 9
 class Request extends Session implements RequestInterface
Please login to merge, or discard this patch.
src/Router.php 1 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\RoutesInterface;
6
-use Nymfonya\Component\Http\Interfaces\RouteInterface;
7 5
 use Nymfonya\Component\Http\Interfaces\RequestInterface;
6
+use Nymfonya\Component\Http\Interfaces\RouteInterface;
8 7
 use Nymfonya\Component\Http\Interfaces\RouterInterface;
8
+use Nymfonya\Component\Http\Interfaces\RoutesInterface;
9 9
 
10 10
 class Router implements RouterInterface
11 11
 {
Please login to merge, or discard this patch.