Completed
Push — master ( 0ec898...4006e3 )
by Flo
06:17 queued 02:46
created
src/View/GenericViewHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
     /**
159 159
      * Get form error by input field
160 160
      * @param $field
161
-     * @return bool|string
161
+     * @return string|false
162 162
      */
163 163
     public function getFormError($field)
164 164
     {
Please login to merge, or discard this patch.
src/View/ViewController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     /**
108 108
      * Get a single variable
109 109
      * @param $key
110
-     * @return boolean|string|array
110
+     * @return string
111 111
      */
112 112
     public function getVariable(string $key)
113 113
     {
Please login to merge, or discard this patch.
src/Controller/Controller.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
  */
8 8
 namespace Faulancer\Controller;
9 9
 
10
-use Faulancer\ORM\EntityManager;
11 10
 use Faulancer\Service\ORM;
12 11
 use Faulancer\ServiceLocator\ServiceInterface;
13 12
 use Faulancer\View\ViewController;
Please login to merge, or discard this patch.
src/Controller/Dispatcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,8 @@
 block discarded – undo
10 10
 use Faulancer\Exception\ClassNotFoundException;
11 11
 use Faulancer\Exception\DispatchFailureException;
12 12
 use Faulancer\Form\AbstractFormHandler;
13
-use Faulancer\Helper\Reflection\AnnotationParser;
14 13
 use Faulancer\Http\Request;
15 14
 use Faulancer\Http\Response;
16
-use Faulancer\Helper\DirectoryIterator;
17 15
 use Faulancer\Exception\MethodNotFoundException;
18 16
 use Faulancer\Service\Config;
19 17
 use Faulancer\Session\SessionManager;
Please login to merge, or discard this patch.