Completed
Push — 1.8 ( 8d6730...a2d9e7 )
by
unknown
42:28
created
src/OroCRM/Bundle/AnalyticsBundle/Validator/CategoriesValidator.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Validate collection.
20 20
      *
21
-     * @param PersistentCollection|RFMMetricCategory[] $value
21
+     * @param PersistentCollection $value
22 22
      * @param CategoriesConstraint $constraint
23 23
      *
24 24
      * {@inheritdoc}
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,8 @@
 block discarded – undo
5 5
 use Doctrine\Common\Collections\Collection;
6 6
 use Doctrine\Common\Collections\Criteria;
7 7
 use Doctrine\ORM\PersistentCollection;
8
-
9 8
 use Symfony\Component\Validator\Constraint;
10 9
 use Symfony\Component\Validator\ConstraintValidator;
11
-
12 10
 use OroCRM\Bundle\AnalyticsBundle\Entity\RFMMetricCategory;
13 11
 
14 12
 class CategoriesValidator extends ConstraintValidator
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Controller/CallController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
7
-
8 7
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
9 8
 use Symfony\Component\HttpFoundation\Request;
10
-
11 9
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
12 10
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
13
-
14 11
 use OroCRM\Bundle\CallBundle\Entity\Call;
15 12
 
16 13
 class CallController extends Controller
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/EventListener/Datagrid/CallListener.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\CallBundle\EventListener\Datagrid;
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6
-
7 6
 use Oro\Bundle\DataGridBundle\Datasource\Orm\OrmDatasource;
8 7
 use Oro\Bundle\DataGridBundle\Event\BuildAfter;
9 8
 use Oro\Bundle\DataGridBundle\Event\BuildBefore;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Form/Handler/CallApiHandler.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 Oro\Bundle\EntityExtendBundle\Tools\AssociationNameGenerator;
11 9
 use OroCRM\Bundle\CallBundle\Entity\Call;
12 10
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Migrations/Schema/v1_3/OroCRMCallBundle.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\CallBundle\Migrations\Schema\v1_3;
4 4
 
5 5
 use Doctrine\DBAL\Schema\Schema;
6
-
7 6
 use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope;
8 7
 use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtension;
9 8
 use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtensionAwareInterface;
Please login to merge, or discard this patch.
OroCRM/Bundle/CallBundle/Tests/Functional/Controller/CallControllerTest.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\CallBundle\Tests\Controller;
4 4
 
5 5
 use Symfony\Component\Form\Form;
6
-
7 6
 use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Tests/Unit/EventListener/CallListenerTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 
164 164
     /**
165 165
      * @param array $expectedUnsets
166
-     * @param array $parametersData
166
+     * @param array $parameters
167 167
      * @return BuildBefore
168 168
      */
169 169
     protected function createBuildBeforeEvent(array $expectedUnsets, array $parameters)
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 OroCRM\Bundle\CallBundle\Tests\Unit\Entity;
4 4
 
5 5
 use Doctrine\ORM\QueryBuilder;
6
-
7 6
 use Oro\Bundle\DataGridBundle\Event\BuildAfter;
8 7
 use Oro\Bundle\DataGridBundle\Event\BuildBefore;
9 8
 use OroCRM\Bundle\CallBundle\EventListener\Datagrid\CallListener;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Tests/Unit/Form/Handler/CallApiHandlerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Symfony\Component\Form\FormInterface;
6 6
 use Symfony\Component\HttpFoundation\Request;
7 7
 use Doctrine\Common\Persistence\ObjectManager;
8
-
9 8
 use OroCRM\Bundle\CallBundle\Entity\Call;
10 9
 use OroCRM\Bundle\CallBundle\Form\Handler\CallApiHandler;
11 10
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Tests/Unit/Form/Handler/CallHandlerTest.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -357,8 +357,8 @@
 block discarded – undo
357 357
     }
358 358
 
359 359
     /**
360
-     * @param mixed $obj
361
-     * @param mixed $val
360
+     * @param Call $obj
361
+     * @param integer $val
362 362
      */
363 363
     protected function setId($obj, $val)
364 364
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -5,12 +5,9 @@
 block discarded – undo
5 5
 use Symfony\Component\Form\FormInterface;
6 6
 use Symfony\Component\Form\FormFactory;
7 7
 use Symfony\Component\HttpFoundation\Request;
8
-
9 8
 use Doctrine\Common\Persistence\ObjectManager;
10
-
11 9
 use Oro\Bundle\AddressBundle\Provider\PhoneProviderInterface;
12 10
 use Oro\Bundle\EntityBundle\Tools\EntityRoutingHelper;
13
-
14 11
 use OroCRM\Bundle\CallBundle\Entity\Call;
15 12
 use OroCRM\Bundle\CallBundle\Entity\Manager\CallActivityManager;
16 13
 use OroCRM\Bundle\CallBundle\Form\Handler\CallHandler;
Please login to merge, or discard this patch.