Completed
Push — master ( d48ef1...47bb75 )
by
unknown
166:45 queued 146:49
created
src/Kunstmaan/TranslatorBundle/Service/Command/DiffCommand.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Kunstmaan\TranslatorBundle\Service\Command;
3 3
 
4
-use Doctrine\DBAL\Migrations\Configuration\Configuration,
5
-    Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand,
6
-    Symfony\Component\Console\Input\InputInterface,
7
-    Symfony\Component\Console\Output\OutputInterface;
4
+use Doctrine\DBAL\Migrations\Configuration\Configuration;
5
+use Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand;
6
+use Symfony\Component\Console\Input\InputInterface;
7
+use Symfony\Component\Console\Output\OutputInterface;
8 8
 
9 9
 class DiffCommand extends GenerateCommand
10 10
 {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Command/UpdateAclCommand.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -2,18 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\AdminBundle\Command;
4 4
 
5
-use Doctrine\ORM\EntityManager;
6 5
 use Doctrine\ORM\EntityManagerInterface;
7 6
 use Kunstmaan\AdminBundle\Service\AclManager;
8 7
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
9 8
 use Symfony\Component\Console\Input\InputInterface;
10 9
 use Symfony\Component\Console\Output\OutputInterface;
11 10
 use Symfony\Component\Console\Question\ChoiceQuestion;
12
-use Symfony\Component\Security\Acl\Domain\Acl;
13
-use Symfony\Component\Security\Acl\Domain\Entry;
14
-use Symfony\Component\Security\Acl\Domain\RoleSecurityIdentity;
15
-use Symfony\Component\Security\Acl\Model\MutableAclProviderInterface;
16
-use Symfony\Component\Security\Acl\Model\ObjectIdentityRetrievalStrategyInterface;
17 11
 use Symfony\Component\Security\Acl\Permission\PermissionMapInterface;
18 12
 
19 13
 /**
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Command/ApplyAclCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\EntityManagerInterface;
6 6
 use Kunstmaan\AdminBundle\Entity\AclChangeset;
7
-use Kunstmaan\AdminBundle\Helper\Security\Acl\Permission\PermissionAdmin;
8
-use Kunstmaan\AdminBundle\Repository\AclChangesetRepository;
9 7
 use Kunstmaan\UtilitiesBundle\Helper\Shell\Shell;
10 8
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
11 9
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/Tests/Helper/DomainConfigurationTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Kunstmaan\AdminBundle\Helper\DomainConfiguration;
6 6
 use PHPUnit_Framework_TestCase;
7
-use Symfony\Component\DependencyInjection\Container;
8 7
 use Symfony\Component\HttpFoundation\Request;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Command/CreateGroupCommand.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,15 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\AdminBundle\Command;
4 4
 
5
-use Doctrine\ORM\EntityManager;
6 5
 use Doctrine\ORM\EntityManagerInterface;
7 6
 use Kunstmaan\AdminBundle\Entity\Group;
8 7
 use Kunstmaan\AdminBundle\Entity\Role;
9 8
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
10 9
 use Symfony\Component\Console\Input\InputArgument;
11
-
12 10
 use Symfony\Component\Console\Input\InputInterface;
13
-
14 11
 use Symfony\Component\Console\Input\InputOption;
15 12
 use Symfony\Component\Console\Output\OutputInterface;
16 13
 
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Command/CreateRoleCommand.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\AdminBundle\Command;
4 4
 
5
-use Doctrine\ORM\EntityManager;
6 5
 use Doctrine\ORM\EntityManagerInterface;
7 6
 use Kunstmaan\AdminBundle\Entity\Role;
8 7
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
9 8
 use Symfony\Component\Console\Input\InputArgument;
10
-
11 9
 use Symfony\Component\Console\Input\InputInterface;
12
-
13 10
 use Symfony\Component\Console\Output\OutputInterface;
14 11
 
15 12
 /**
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Command/CreateUserCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\AdminBundle\Command;
4 4
 
5
-use Doctrine\ORM\EntityManager;
6 5
 use Doctrine\ORM\EntityManagerInterface;
7 6
 use FOS\UserBundle\Model\GroupManagerInterface;
8 7
 use Kunstmaan\AdminBundle\Entity\Group;
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/DependencyInjection/KunstmaanAdminExtension.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use FOS\UserBundle\Form\Type\ResettingFormType;
6 6
 use InvalidArgumentException;
7
-
8
-use Kunstmaan\AdminBundle\Helper\DomainConfiguration;
9 7
 use Symfony\Component\Config\FileLocator;
10 8
 use Symfony\Component\DependencyInjection\ContainerBuilder;
11 9
 use Symfony\Component\DependencyInjection\Definition;
Please login to merge, or discard this patch.
src/Kunstmaan/DashboardBundle/Command/GoogleAnalyticsDataCollectCommand.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 Kunstmaan\DashboardBundle\Command;
3 3
 
4
-use Doctrine\ORM\EntityManager;
5 4
 use Kunstmaan\DashboardBundle\Command\Helper\Analytics\ChartDataCommandHelper;
6 5
 use Kunstmaan\DashboardBundle\Command\Helper\Analytics\GoalCommandHelper;
7 6
 use Kunstmaan\DashboardBundle\Command\Helper\Analytics\MetricsCommandHelper;
Please login to merge, or discard this patch.