Completed
Push — master ( 221622...694417 )
by Dominik
03:32
created
Controller/AzineHybridAuthJsonController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -3,15 +3,10 @@
 block discarded – undo
3 3
 namespace Azine\HybridAuthBundle\Controller;
4 4
 
5 5
 use Symfony\Component\HttpFoundation\RedirectResponse;
6
-
7 6
 use Azine\HybridAuthBundle\Services\AzineHybridAuth;
8
-
9 7
 use Azine\HybridAuthBundle\Services\AzineMergedBusinessNetworksProvider;
10
-
11 8
 use Symfony\Component\HttpFoundation\JsonResponse;
12
-
13 9
 use Symfony\Component\HttpFoundation\Request;
14
-
15 10
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
16 11
 
17 12
 class AzineHybridAuthJsonController extends Controller {
Please login to merge, or discard this patch.
Controller/HybridEndPointController.php 1 patch
Unused Use Statements   +5 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,15 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Azine\HybridAuthBundle\Controller;
4 4
 
5
-use Azine\HybridAuthBundle\Services\AzineHybridAuth;
6
-use Symfony\Component\HttpFoundation\ParameterBag;
7
-
8
-use Symfony\Component\HttpFoundation\RedirectResponse;
9
-
10
-use Symfony\Component\HttpFoundation\Response;
11
-
12
-use Symfony\Component\HttpFoundation\Request;
13
-
5
+use Azine\HybridAuthBundle\Services\AzineHybridAuth;
6
+use Symfony\Component\HttpFoundation\ParameterBag;
7
+use Symfony\Component\HttpFoundation\RedirectResponse;
8
+use Symfony\Component\HttpFoundation\Response;
9
+use Symfony\Component\HttpFoundation\Request;
14 10
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
15 11
 
16 12
 class HybridEndPointController extends Controller {
Please login to merge, or discard this patch.
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/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 Doctrine\Common\Persistence\ObjectManager;
7 6
 use Symfony\Component\HttpFoundation\Request;
8 7
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
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.