Completed
Branch master (e93081)
by Guilherme
17:01
created
src/LoginCidadao/APIBundle/Controller/PersonController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use JMS\Serializer\SerializationContext;
7 7
 use LoginCidadao\APIBundle\Exception\RequestTimeoutException;
8 8
 use LoginCidadao\CoreBundle\Entity\Person;
9
-use LoginCidadao\CoreBundle\Entity\Authorization;
10 9
 use Symfony\Component\HttpFoundation\Request;
11 10
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
12 11
 use Nelmio\ApiDocBundle\Annotation\ApiDoc;
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/Command/BatchUpdateMobileCommand.php 1 patch
Unused Use Statements   -14 removed lines patch added patch discarded remove patch
@@ -10,27 +10,13 @@
 block discarded – undo
10 10
 
11 11
 namespace LoginCidadao\CoreBundle\Command;
12 12
 
13
-use Doctrine\DBAL\Types\ConversionException;
14
-use Doctrine\ORM\AbstractQuery;
15
-use Doctrine\ORM\Internal\Hydration\IterableResult;
16
-use libphonenumber\NumberFormat;
17
-use libphonenumber\PhoneNumber;
18
-use libphonenumber\PhoneNumberFormat;
19
-use libphonenumber\PhoneNumberType;
20
-use libphonenumber\PhoneNumberUtil;
21
-use LoginCidadao\CoreBundle\Entity\Person;
22
-use LoginCidadao\CoreBundle\Entity\PersonRepository;
23 13
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
24
-use Symfony\Component\Config\Definition\Exception\Exception;
25 14
 use Symfony\Component\Console\Helper\ProgressIndicator;
26 15
 use Symfony\Component\Console\Input\InputArgument;
27 16
 use Symfony\Component\Console\Output\OutputInterface;
28
-use Symfony\Component\Console\Output\BufferedOutput;
29 17
 use Symfony\Component\Console\Input\InputInterface;
30 18
 use Symfony\Component\Console\Input\InputOption;
31
-use Symfony\Component\Console\Input\ArrayInput;
32 19
 use Symfony\Component\Console\Style\SymfonyStyle;
33
-use Doctrine\ORM\EntityManager;
34 20
 
35 21
 class BatchUpdateMobileCommand extends ContainerAwareCommand
36 22
 {
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/Command/MobileCleanupCommand.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -11,12 +11,9 @@  discard block
 block discarded – undo
11 11
 namespace LoginCidadao\CoreBundle\Command;
12 12
 
13 13
 use Doctrine\DBAL\Types\ConversionException;
14
-use Doctrine\ORM\AbstractQuery;
15 14
 use Doctrine\ORM\Internal\Hydration\IterableResult;
16
-use libphonenumber\NumberFormat;
17 15
 use libphonenumber\PhoneNumber;
18 16
 use libphonenumber\PhoneNumberFormat;
19
-use libphonenumber\PhoneNumberType;
20 17
 use libphonenumber\PhoneNumberUtil;
21 18
 use LoginCidadao\CoreBundle\Entity\Person;
22 19
 use LoginCidadao\CoreBundle\Entity\PersonRepository;
@@ -25,10 +22,7 @@  discard block
 block discarded – undo
25 22
 use Symfony\Component\Console\Helper\ProgressIndicator;
26 23
 use Symfony\Component\Console\Input\InputArgument;
27 24
 use Symfony\Component\Console\Output\OutputInterface;
28
-use Symfony\Component\Console\Output\BufferedOutput;
29 25
 use Symfony\Component\Console\Input\InputInterface;
30
-use Symfony\Component\Console\Input\InputOption;
31
-use Symfony\Component\Console\Input\ArrayInput;
32 26
 use Symfony\Component\Console\Style\SymfonyStyle;
33 27
 use Doctrine\ORM\EntityManager;
34 28
 
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/Controller/Admin/ClientController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,10 +6,8 @@
 block discarded – undo
6 6
 use Symfony\Component\Routing\Annotation\Route;
7 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
8 8
 use Symfony\Component\HttpFoundation\Request;
9
-use Symfony\Component\HttpFoundation\Response;
10 9
 use LoginCidadao\OAuthBundle\Entity\Client;
11 10
 use LoginCidadao\CoreBundle\Helper\GridHelper;
12
-use Michelf\MarkdownExtra;
13 11
 
14 12
 /**
15 13
  * @Route("/admin/client")
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/Controller/DefaultController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use LoginCidadao\CoreBundle\Model\SupportMessage;
7 7
 use Symfony\Component\HttpFoundation\Request;
8 8
 use Symfony\Component\HttpFoundation\JsonResponse;
9
-use Symfony\Component\HttpFoundation\RedirectResponse;
10 9
 use Symfony\Component\Security\Core\User\UserInterface;
11 10
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
12 11
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/EventListener/RegisterListener.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 Ramsey\Uuid\Uuid;
10 10
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
11 11
 use Symfony\Component\HttpFoundation\RedirectResponse;
12
-use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
13 12
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
14 13
 use FOS\UserBundle\Util\TokenGeneratorInterface;
15 14
 use FOS\UserBundle\Mailer\MailerInterface;
Please login to merge, or discard this patch.
src/LoginCidadao/CoreBundle/Helper/UserManipulatorProxy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 
11 11
 namespace LoginCidadao\CoreBundle\Helper;
12 12
 
13
-use FOS\UserBundle\Util\UserManipulator as BaseClass;
14 13
 use FOS\UserBundle\Model\UserManagerInterface;
15 14
 use FOS\UserBundle\Util\UserManipulator;
16 15
 use Symfony\Component\DependencyInjection\ContainerInterface;
Please login to merge, or discard this patch.
src/LoginCidadao/DynamicFormBundle/Tests/Service/DynamicFormServiceTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use LoginCidadao\DynamicFormBundle\Model\DynamicFormData;
21 21
 use LoginCidadao\DynamicFormBundle\Service\DynamicFormService;
22 22
 use LoginCidadao\OAuthBundle\Entity\Client;
23
-use Symfony\Component\HttpFoundation\RedirectResponse;
24 23
 
25 24
 class DynamicFormServiceTest extends \PHPUnit_Framework_TestCase
26 25
 {
Please login to merge, or discard this patch.
src/LoginCidadao/LongPolling/LongPollingUtils.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Doctrine\ORM\EntityManagerInterface;
14 14
 use LoginCidadao\APIBundle\Exception\RequestTimeoutException;
15 15
 use LoginCidadao\CoreBundle\Model\PersonInterface;
16
-use Symfony\Component\HttpFoundation\JsonResponse;
17 16
 
18 17
 class LongPollingUtils
19 18
 {
Please login to merge, or discard this patch.