Completed
Push — 1.8 ( b7094f...f1162e )
by
unknown
83:38 queued 61:44
created
src/Oro/Bundle/UserBundle/Form/Type/UserMultiSelectType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,13 +2,11 @@
 block discarded – undo
2 2
 namespace Oro\Bundle\UserBundle\Form\Type;
3 3
 
4 4
 use Doctrine\ORM\EntityManager;
5
-
6 5
 use Symfony\Component\Form\AbstractType;
7 6
 use Symfony\Component\Form\FormEvent;
8 7
 use Symfony\Component\Form\FormEvents;
9 8
 use Symfony\Component\Form\FormBuilderInterface;
10 9
 use Symfony\Component\OptionsResolver\OptionsResolverInterface;
11
-
12 10
 use Oro\Bundle\FormBundle\Form\DataTransformer\EntitiesToIdsTransformer;
13 11
 
14 12
 class UserMultiSelectType extends AbstractType
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Mailer/BaseProcessor.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param UserInterface $user
53
-     * @param array         $templateData
53
+     * @param string[]         $templateData
54 54
      * @param string        $type
55 55
      *
56 56
      * @return int          The return value is the number of recipients who were accepted for delivery
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\UserBundle\Mailer;
4 4
 
5 5
 use Doctrine\Common\Persistence\ManagerRegistry;
6
-
7 6
 use Oro\Bundle\ConfigBundle\Config\ConfigManager;
8 7
 use Oro\Bundle\EmailBundle\Model\EmailTemplateInterface;
9 8
 use Oro\Bundle\EmailBundle\Provider\EmailRenderer;
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Migrations/Data/ORM/LoadAdminUserData.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Doctrine\Common\DataFixtures\AbstractFixture;
8 8
 use Doctrine\Common\Persistence\ObjectManager;
9 9
 use Doctrine\Common\DataFixtures\DependentFixtureInterface;
10
-
11 10
 use Oro\Bundle\UserBundle\Entity\Role;
12 11
 use Oro\Bundle\UserBundle\Entity\UserManager;
13 12
 use Oro\Bundle\OrganizationBundle\Migrations\Data\ORM\LoadOrganizationAndBusinessUnitData;
Please login to merge, or discard this patch.
UserBundle/Migrations/Data/ORM/UpdateUserEntitiesWithOrganization.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 Doctrine\Common\Persistence\ObjectManager;
6 6
 use Doctrine\Common\DataFixtures\DependentFixtureInterface;
7
-
8 7
 use Oro\Bundle\UserBundle\Entity\User;
9 8
 use Oro\Bundle\BatchBundle\ORM\Query\BufferedQueryResultIterator;
10 9
 use Oro\Bundle\OrganizationBundle\Migrations\Data\ORM\UpdateWithOrganization;
Please login to merge, or discard this patch.
UserBundle/Migrations/Schema/v1_13/UpdateGroupOrganizationFieldConfig.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 Oro\Bundle\UserBundle\Migrations\Schema\v1_13;
4 4
 
5 5
 use Doctrine\DBAL\Schema\Schema;
6
-
7 6
 use Oro\Bundle\EntityConfigBundle\Migration\UpdateEntityConfigFieldValueQuery;
8 7
 use Oro\Bundle\MigrationBundle\Migration\Migration;
9 8
 use Oro\Bundle\MigrationBundle\Migration\QueryBag;
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Migrations/Schema/v1_3/OroUserBundle.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,16 +3,13 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\UserBundle\Migrations\Schema\v1_3;
4 4
 
5 5
 use Doctrine\DBAL\Schema\Schema;
6
-
7 6
 use Oro\Bundle\MigrationBundle\Migration\Migration;
8 7
 use Oro\Bundle\MigrationBundle\Migration\QueryBag;
9 8
 use Oro\Bundle\MigrationBundle\Migration\Extension\NameGeneratorAwareInterface;
10 9
 use Oro\Bundle\MigrationBundle\Tools\DbIdentifierNameGenerator;
11
-
12 10
 use Oro\Bundle\ActivityBundle\Migration\Extension\ActivityExtension;
13 11
 use Oro\Bundle\ActivityBundle\Migration\Extension\ActivityExtensionAwareInterface;
14 12
 use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope;
15
-
16 13
 use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtension;
17 14
 use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtensionAwareInterface;
18 15
 use Oro\Bundle\EntityExtendBundle\Tools\ExtendDbIdentifierNameGenerator;
Please login to merge, or discard this patch.
Oro/Bundle/UserBundle/Tests/Functional/API/DataFixtures/LoadUserData.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\Common\Collections\ArrayCollection;
6 6
 use Doctrine\Common\DataFixtures\AbstractFixture;
7 7
 use Doctrine\Common\Persistence\ObjectManager;
8
-
9 8
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
10 9
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
11 10
 use Symfony\Component\DependencyInjection\ContainerInterface;
12
-
13 11
 use Oro\Bundle\UserBundle\Entity\UserApi;
14 12
 
15 13
 class LoadUserData extends AbstractFixture implements ContainerAwareInterface
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Tests/Functional/ControllersTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,7 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\UserBundle\Tests\Functional;
4 4
 
5 5
 use Symfony\Component\DomCrawler\Form;
6
-
7 6
 use Doctrine\Bundle\DoctrineBundle\Registry;
8
-
9 7
 use Oro\Bundle\UserBundle\Entity\User;
10 8
 use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase;
11 9
 
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Tests/Functional/DataFixtures/LoadUserData.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 Doctrine\Common\DataFixtures\AbstractFixture;
6 6
 use Doctrine\Common\Persistence\ObjectManager;
7
-
8 7
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
9 8
 use Symfony\Component\DependencyInjection\ContainerInterface;
10 9
 
Please login to merge, or discard this patch.