Completed
Push — master ( 289d66...7fe9d8 )
by Dominik
09:54
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/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.
Controller/AzineHybridAuthJsonController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -6,11 +6,8 @@
 block discarded – undo
6 6
 use Azine\HybridAuthBundle\Services\AzineHybridAuth;
7 7
 use Azine\HybridAuthBundle\Services\AzineMergedBusinessNetworksProvider;
8 8
 use Symfony\Component\HttpFoundation\RedirectResponse;
9
-
10 9
 use Symfony\Component\HttpFoundation\JsonResponse;
11
-
12 10
 use Symfony\Component\HttpFoundation\Request;
13
-
14 11
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
15 12
 
16 13
 class AzineHybridAuthJsonController extends Controller {
Please login to merge, or discard this patch.
Services/AzineHybridAuth.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\DependencyInjection\AzineHybridAuthExtension;
5
-
6 5
 use Azine\HybridAuthBundle\Entity\HybridAuthSessionData;
7 6
 use Doctrine\Common\Persistence\ObjectManager;
8 7
 use Symfony\Component\HttpFoundation\Cookie;
Please login to merge, or discard this patch.