Completed
Push — master ( 63293a...ccddde )
by Benjamin
14:56 queued 12:04
created
src/Alpixel/Bundle/UserBundle/Provider/OAuthUserProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,7 @@
 block discarded – undo
10 10
 use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
11 11
 use Symfony\Component\Security\Core\User\UserInterface;
12 12
 use Alpixel\Bundle\UserBundle\Event\UserEvent;
13
-use FOS\UserBundle\Doctrine\UserManager;
14 13
 use FOS\UserBundle\Model\UserManagerInterface;
15
-use Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher;
16 14
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
17 15
 use Symfony\Component\HttpFoundation\RequestStack;
18 16
 
Please login to merge, or discard this patch.
src/Alpixel/Bundle/UserBundle/Services/AccessManager.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 class AccessManager
9 9
 {
10
-  protected $securityContext;
10
+    protected $securityContext;
11 11
     protected $doctrine;
12 12
 
13 13
     public function __construct(Registry $doctrine, SecurityContext $context)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function __construct(Registry $doctrine, SecurityContext $context)
14 14
     {
15 15
         $this->securityContext = $context;
16
-        $this->doctrine  = $doctrine;
16
+        $this->doctrine = $doctrine;
17 17
     }
18 18
 
19 19
     public function canAccess($type)
Please login to merge, or discard this patch.