Test Failed
Pull Request — master (#19)
by Flo
03:14
created
src/Controller/Dispatcher.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     }
130 130
 
131 131
     /**
132
-     * @param $file
132
+     * @param string $file
133 133
      * @return string
134 134
      * @codeCoverageIgnore
135 135
      */
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @param $file
144
+     * @param string $file
145 145
      * @return string
146 146
      * @codeCoverageIgnore
147 147
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Faulancer\Exception\ClassNotFoundException;
10 10
 use Faulancer\Exception\DispatchFailureException;
11 11
 use Faulancer\Exception\IncompatibleResponseException;
12
-use Faulancer\Form\AbstractFormHandler;
13 12
 use Faulancer\Http\JsonResponse;
14 13
 use Faulancer\Http\Request;
15 14
 use Faulancer\Http\Response;
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * Response constructor.
52
-     * @param mixed $content
52
+     * @param string $content
53 53
      */
54 54
     public function __construct($content = null)
55 55
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Get response body and set headers
93 93
      *
94
-     * @return mixed
94
+     * @return string
95 95
      */
96 96
     public function getContent()
97 97
     {
Please login to merge, or discard this patch.
src/Kernel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param $request
79
+     * @param Request $request
80 80
      * @param $e
81 81
      * @return Http\Response
82 82
      * @codeCoverageIgnore
Please login to merge, or discard this patch.
src/ORM/Entity.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace Faulancer\ORM;
9 9
 
10 10
 use Faulancer\Service\AbstractControllerService;
11
-use Faulancer\Service\DbService;
12 11
 use Faulancer\ServiceLocator\ServiceLocator;
13 12
 use \ORM\EntityManager;
14 13
 
Please login to merge, or discard this patch.