Completed
Push — master ( dd2819...45b95e )
by
unknown
10:20
created
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/Form/Handler/CallHandler.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -5,13 +5,10 @@
 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\ActivityBundle\Manager\ActivityManager;
12 10
 use Oro\Bundle\AddressBundle\Provider\PhoneProviderInterface;
13 11
 use Oro\Bundle\EntityBundle\Tools\EntityRoutingHelper;
14
-
15 12
 use OroCRM\Bundle\CallBundle\Entity\Call;
16 13
 use OroCRM\Bundle\CallBundle\Entity\Manager\CallActivityManager;
17 14
 
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,13 +5,10 @@
 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\ActivityBundle\Manager\ActivityManager;
12 10
 use Oro\Bundle\AddressBundle\Provider\PhoneProviderInterface;
13 11
 use Oro\Bundle\EntityBundle\Tools\EntityRoutingHelper;
14
-
15 12
 use OroCRM\Bundle\CallBundle\Entity\Call;
16 13
 use OroCRM\Bundle\CallBundle\Entity\Manager\CallActivityManager;
17 14
 use OroCRM\Bundle\CallBundle\Form\Handler\CallHandler;
Please login to merge, or discard this patch.
Bundle/CampaignBundle/Command/CalculateTrackingEventSummaryCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\CampaignBundle\Command;
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6
-
7 6
 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
8 7
 use Symfony\Component\Console\Input\InputInterface;
9 8
 use Symfony\Component\Console\Output\OutputInterface;
10
-
11 9
 use Oro\Bundle\CronBundle\Command\CronCommandInterface;
12 10
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
13 11
 use OroCRM\Bundle\CampaignBundle\Entity\Campaign;
Please login to merge, or discard this patch.