Completed
Push — master ( 942f88...d0257e )
by Pierre
02:09
created
src/Interfaces/RouteInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
      * instanciate
9 9
      *
10 10
      * @param string $routeItem
11
+     * @return void
11 12
      */
12 13
     public function __construct(string $routeItem);
13 14
 
Please login to merge, or discard this patch.
src/Interfaces/CookieInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
     /**
9 9
      * instanciate
10 10
      *
11
+     * @return null|\Nymfonya\Component\Http\Session
11 12
      */
12 13
     public function __construct();
13 14
 
Please login to merge, or discard this patch.
src/Interfaces/HeadersInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * instanciate
19 19
      *
20
+     * @return void
20 21
      */
21 22
     public function __construct();
22 23
 
Please login to merge, or discard this patch.
src/Interfaces/KernelInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@
 block discarded – undo
9 9
      *
10 10
      * @param string $env
11 11
      * @param string $path
12
+     * @return void
12 13
      */
13 14
     public function __construct(string $env, string $path);
14 15
 
Please login to merge, or discard this patch.
src/Interfaces/RequestInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * instanciate
31 31
      *
32
+     * @return void
32 33
      */
33 34
     public function __construct();
34 35
 
@@ -51,7 +52,7 @@  discard block
 block discarded – undo
51 52
     /**
52 53
      * returns http param for a given key
53 54
      *
54
-     * @return array
55
+     * @return string
55 56
      */
56 57
     public function getParam(string $key): string;
57 58
 
Please login to merge, or discard this patch.
src/Interfaces/ResponseInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * instanciate
19 19
      *
20
+     * @return void
20 21
      */
21 22
     public function __construct();
22 23
     
Please login to merge, or discard this patch.
src/Interfaces/RouterInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @param RoutesInterface $routes
18 18
      * @param RequestInterface $request
19
+     * @return void
19 20
      */
20 21
     public function __construct(RoutesInterface $routes, RequestInterface $request);
21 22
 
@@ -46,7 +47,7 @@  discard block
 block discarded – undo
46 47
      *
47 48
      * @param RouteInterface $route
48 49
      * @param array $matches
49
-     * @return RouRouterInterfaceter
50
+     * @return RouterInterface
50 51
      */
51 52
     public function setParams(RouteInterface $route, array $matches): RouterInterface;
52 53
 
Please login to merge, or discard this patch.
src/Interfaces/RoutesInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
      * instanciate
11 11
      *
12 12
      * @param array $routes
13
+     * @return void
13 14
      */
14 15
     public function __construct(array $routes);
15 16
 
Please login to merge, or discard this patch.
src/Interfaces/SessionInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -7,6 +7,7 @@
 block discarded – undo
7 7
 
8 8
     /**
9 9
      * instanciate
10
+     * @return null|\Nymfonya\Component\Http\Session
10 11
      */
11 12
     public function __construct();
12 13
 
Please login to merge, or discard this patch.