Completed
Push — master ( 4006e3...35fa08 )
by Flo
07:46
created
src/Kernel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Faulancer\Exception\DispatchFailureException;
13 13
 use Faulancer\Http\Request;
14 14
 use Faulancer\Service\Config;
15
-use Faulancer\ServiceLocator\ServiceLocator;
16 15
 
17 16
 /**
18 17
  * Class Kernel
Please login to merge, or discard this patch.
src/Console/ArgumentParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,11 +50,11 @@
 block discarded – undo
50 50
 
51 51
             if (strpos($args[$i], '-') === false) {
52 52
                 continue;
53
-            } else if (empty($args[$i+1])) {
53
+            } else if (empty($args[$i + 1])) {
54 54
                 break;
55 55
             }
56 56
 
57
-            $this->set(str_replace('-', '', $args[$i]), $args[$i+1]);
57
+            $this->set(str_replace('-', '', $args[$i]), $args[$i + 1]);
58 58
 
59 59
         }
60 60
 
Please login to merge, or discard this patch.