@@ -12,7 +12,6 @@ |
||
| 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 |
@@ -50,11 +50,11 @@ |
||
| 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 | |