Completed
Push — master ( dd2819...45b95e )
by
unknown
10:20
created
OroCRM/Bundle/ContactBundle/Controller/Api/Soap/ContactGroupController.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 Symfony\Component\Form\FormInterface;
6 6
 use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
7
-
8 7
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
9 8
 use Oro\Bundle\SoapBundle\Controller\Api\Soap\SoapController;
10 9
 use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Controller/ContactAddressController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
7
-
8 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
10 9
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
11
-
12 10
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
13 11
 use OroCRM\Bundle\ContactBundle\Entity\ContactAddress;
14 12
 use OroCRM\Bundle\ContactBundle\Entity\Contact;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Controller/ContactController.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,15 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
7
-
8 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
10
-
11 9
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
12 10
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
13
-
14 11
 use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager;
15
-
16 12
 use OroCRM\Bundle\ContactBundle\Entity\Contact;
17 13
 use OroCRM\Bundle\AccountBundle\Entity\Account;
18 14
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Controller/GroupController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -2,15 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace OroCRM\Bundle\ContactBundle\Controller;
4 4
 
5
-use Symfony\Component\HttpFoundation\Request;
6 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
-
8 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
10
-
11 8
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
12
-use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
13
-
14 9
 use OroCRM\Bundle\ContactBundle\Entity\Group;
15 10
 
16 11
 /**
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Entity/Repository/ContactRepository.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\ContactBundle\Entity\Repository;
4 4
 
5 5
 use Doctrine\ORM\EntityRepository;
6
-use Doctrine\ORM\QueryBuilder;
7
-
8 6
 use Oro\Bundle\EmailBundle\Entity\Repository\EmailAwareRepository;
9 7
 
10 8
 class ContactRepository extends EntityRepository implements EmailAwareRepository
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/EventListener/ContactListener.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,9 @@
 block discarded – undo
5 5
 use Doctrine\ORM\UnitOfWork;
6 6
 use Symfony\Component\Security\Core\SecurityContextInterface;
7 7
 use Symfony\Component\DependencyInjection\ContainerInterface;
8
-
9 8
 use Doctrine\ORM\EntityManager;
10 9
 use Doctrine\ORM\Event\LifecycleEventArgs;
11 10
 use Doctrine\ORM\Event\PreUpdateEventArgs;
12
-
13 11
 use OroCRM\Bundle\ContactBundle\Entity\Contact;
14 12
 use Oro\Bundle\UserBundle\Entity\User;
15 13
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Form/Handler/ContactHandler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\EntityManagerInterface;
6 6
 use Doctrine\ORM\UnitOfWork;
7
-
8 7
 use Symfony\Component\Form\FormInterface;
9 8
 use Symfony\Component\HttpFoundation\Request;
10
-
11 9
 use Oro\Bundle\TagBundle\Entity\TagManager;
12 10
 use Oro\Bundle\TagBundle\Form\Handler\TagHandlerInterface;
13 11
 use OroCRM\Bundle\AccountBundle\Entity\Account;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Form/Handler/GroupHandler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Form\FormInterface;
6 6
 use Symfony\Component\HttpFoundation\Request;
7
-
8 7
 use Doctrine\Common\Persistence\ObjectManager;
9
-
10 8
 use OroCRM\Bundle\ContactBundle\Entity\Contact;
11 9
 use OroCRM\Bundle\ContactBundle\Entity\Group;
12 10
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Handler/ContactEmailApiHandler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\ContactBundle\Handler;
4 4
 
5 5
 use Symfony\Component\PropertyAccess\PropertyAccess;
6
-
7 6
 use Oro\Bundle\EntityBundle\Form\EntityField\Handler\Processor\AbstractEntityApiHandler;
8 7
 use Oro\Bundle\EntityBundle\ORM\OroEntityManager;
9 8
 
Please login to merge, or discard this patch.