Completed
Push — master ( 460ad7...4674f4 )
by Dominik
02:40
created
Services/AzineGenderGuesser.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4
-use Azine\HybridAuthBundle\Entity\UserContact;
5
-
6 4
 /**
7 5
  * 	https://github.com/petewarden/genderfromname/blob/master/genderfromname.php
8 6
 	
Please login to merge, or discard this patch.
Services/AzineMergedBusinessNetworksProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4 4
 use Azine\HybridAuthBundle\Entity\UserContact;
5
-
6 5
 use Symfony\Component\HttpFoundation\Session\Session;
7 6
 
8 7
 class AzineMergedBusinessNetworksProvider {
Please login to merge, or discard this patch.
Services/GenderGuesser.php 1 patch
Unused Use Statements   -8 removed lines patch added patch discarded remove patch
@@ -1,14 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4
-use Azine\HybridAuthBundle\Entity\UserContact;
5
-
6
-use Symfony\Component\HttpFoundation\Session\Session;
7
-
8
-use Azine\HybridAuthBundle\DependencyInjection\AzineHybridAuthExtension;
9
-
10
-use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
11
-
12 4
 interface GenderGuesser {
13 5
 
14 6
 	/**
Please login to merge, or discard this patch.
Tests/Services/AzineGenderGuesserTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4
-use Azine\HybridAuthBundle\Entity\UserContact;
5 4
 use Symfony\Bundle\FrameworkBundle\Tests\TestCase;
6 5
 
7 6
 class AzineGenderGuesserTest extends TestCase {
Please login to merge, or discard this patch.
Controller/AzineHybridAuthJsonController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,8 @@
 block discarded – undo
3 3
 namespace Azine\HybridAuthBundle\Controller;
4 4
 
5 5
 use Symfony\Component\HttpFoundation\RedirectResponse;
6
-
7 6
 use Symfony\Component\HttpFoundation\JsonResponse;
8
-
9 7
 use Symfony\Component\HttpFoundation\Request;
10
-
11 8
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
12 9
 
13 10
 class AzineHybridAuthJsonController extends Controller {
Please login to merge, or discard this patch.
Controller/HybridEndPointController.php 1 patch
Unused Use Statements   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,14 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Azine\HybridAuthBundle\Controller;
4 4
 
5
-use Symfony\Component\HttpFoundation\ParameterBag;
6
-
7
-use Symfony\Component\HttpFoundation\RedirectResponse;
8
-
9
-use Symfony\Component\HttpFoundation\Response;
10
-
11
-use Symfony\Component\HttpFoundation\Request;
12
-
5
+use Symfony\Component\HttpFoundation\ParameterBag;
6
+use Symfony\Component\HttpFoundation\RedirectResponse;
7
+use Symfony\Component\HttpFoundation\Response;
8
+use Symfony\Component\HttpFoundation\Request;
13 9
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
14 10
 
15 11
 class HybridEndPointController extends Controller {
Please login to merge, or discard this patch.
Services/AzineHybridAuth.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,13 +2,11 @@
 block discarded – undo
2 2
 namespace Azine\HybridAuthBundle\Services;
3 3
 
4 4
 use Azine\HybridAuthBundle\DependencyInjection\AzineHybridAuthExtension;
5
-
6 5
 use Azine\HybridAuthBundle\Entity\HybridAuthSessionData;
7 6
 use Doctrine\Common\Persistence\ObjectManager;
8 7
 use Symfony\Component\HttpFoundation\Cookie;
9 8
 use Symfony\Component\HttpFoundation\Request;
10 9
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
11
-use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
12 10
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
13 11
 use Symfony\Component\Security\Core\User\UserInterface;
14 12
 
Please login to merge, or discard this patch.