Completed
Push — master ( 45854b...5ccb75 )
by Flo
38s
created
src/Controller/Controller.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\Controller;
9 9
 
10 10
 use Faulancer\Http\Request;
11
-use Faulancer\Http\Uri;
12 11
 use Faulancer\Service\AuthenticatorService;
13 12
 use Faulancer\Service\DbService;
14 13
 use Faulancer\Service\HttpService;
Please login to merge, or discard this patch.
src/Controller/Dispatcher.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Faulancer\Service\Config;
17 17
 use Faulancer\Service\ResponseService;
18 18
 use Faulancer\ServiceLocator\ServiceLocator;
19
-use Faulancer\Session\SessionManager;
20 19
 
21 20
 /**
22 21
  * Class Dispatcher
Please login to merge, or discard this patch.
src/Service/AuthenticatorService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Faulancer\Controller\Controller;
10 10
 use Faulancer\ORM\User\Entity as UserEntity;
11 11
 use Faulancer\ServiceLocator\ServiceInterface;
12
-use Faulancer\Session\SessionManager;
13 12
 
14 13
 /**
15 14
  * Class AuthenticatorService
Please login to merge, or discard this patch.
src/Translate/Translator.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 use Faulancer\Service\Config;
12 12
 use Faulancer\Service\SessionManagerService;
13 13
 use Faulancer\ServiceLocator\ServiceLocator;
14
-use Faulancer\Session\SessionManager;
15
-use Symfony\Component\EventDispatcher\Tests\Service;
16 14
 
17 15
 /**
18 16
  * Class Translator
Please login to merge, or discard this patch.
src/Http/Http.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     protected function triggerRedirect($location = '/', $code = 301)
46 46
     {
47 47
         header('HTTP/2 ' . $code . ' ' . Response::HTTP_STATUS_CODES[$code]);
48
-        header('Location: ' .  $location);
48
+        header('Location: ' . $location);
49 49
 
50 50
         exit(0);
51 51
     }
Please login to merge, or discard this patch.