Passed
Push — master ( 8053d6...b6073c )
by Pierre
01:41
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/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/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/RouterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@
 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
 
Please login to merge, or discard this patch.
src/Kernel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace Nymfonya\Component\Http;
4 4
 
5 5
 use Nymfonya\Component\Http\Headers;
6
+use Nymfonya\Component\Http\Interfaces\KernelEventsInterface;
6 7
 use Nymfonya\Component\Http\Interfaces\KernelInterface;
7 8
 use Nymfonya\Component\Http\Response;
8
-use Nymfonya\Component\Http\Interfaces\KernelEventsInterface;
9 9
 use Nymfonya\Component\Pubsub\Dispatcher;
10 10
 use Nymfonya\Component\Pubsub\Event;
11 11
 
Please login to merge, or discard this patch.
src/Reuse/TKernel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 use Monolog\Logger;
8 8
 use Nymfonya\Component\Config;
9 9
 use Nymfonya\Component\Container;
10
-use Nymfonya\Component\Pubsub\Dispatcher;
11 10
 use Nymfonya\Component\Http\Kernel;
12 11
 use Nymfonya\Component\Http\Middleware;
13 12
 use Nymfonya\Component\Http\Request;
14 13
 use Nymfonya\Component\Http\Response;
15 14
 use Nymfonya\Component\Http\Router;
15
+use Nymfonya\Component\Pubsub\Dispatcher;
16 16
 use ReflectionClass;
17 17
 
18 18
 trait TKernel
Please login to merge, or discard this patch.