Completed
Push — master ( 9fc944...74d39c )
by
unknown
08:52
created
Oro/Bundle/MagentoBundle/Tests/Unit/Provider/AbstractSyncProcessorTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Console\Application;
6
-
7 6
 use Symfony\Component\HttpKernel\Kernel;
8 7
 use Symfony\Component\DependencyInjection\Container;
9
-
10 8
 use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase;
11 9
 
12 10
 class LoadTest extends WebTestCase
Please login to merge, or discard this patch.
Bundle/MagentoBundle/Tests/Unit/Provider/CartExpirationProcessorTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Console\Application;
6
-
7 6
 use Symfony\Component\HttpKernel\Kernel;
8 7
 use Symfony\Component\DependencyInjection\Container;
9
-
10 8
 use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase;
11 9
 
12 10
 class LoadTest extends WebTestCase
Please login to merge, or discard this patch.
Bundle/MagentoBundle/Tests/Unit/Provider/InitialScheduleProcessorTest.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -383,6 +383,7 @@
 block discarded – undo
383 383
 
384 384
     /**
385 385
      * {@inheritdoc}
386
+     * @param \PHPUnit_Framework_MockObject_MockObject $realConnector
386 387
      */
387 388
     protected function getIntegration(array $connectors = [], \DateTime $syncStartDate = null, $realConnector = null)
388 389
     {
Please login to merge, or discard this 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\Validator\Constraint;
6 6
 use Symfony\Component\Validator\ConstraintValidator;
7
-
8 7
 use OroCRM\Bundle\TaskBundle\Validator\Constraints\DueDateRequired;
9 8
 use OroCRM\Bundle\TaskBundle\Entity\Task;
10 9
 
Please login to merge, or discard this patch.
Oro/Bundle/MagentoBundle/Tests/Unit/Provider/InitialSyncProcessorTest.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\Validator\Constraint;
6 6
 use Symfony\Component\Validator\ConstraintValidator;
7
-
8 7
 use OroCRM\Bundle\TaskBundle\Validator\Constraints\DueDateRequired;
9 8
 use OroCRM\Bundle\TaskBundle\Entity\Task;
10 9
 
Please login to merge, or discard this patch.
Tests/Unit/Provider/Iterator/NewsletterSubscriberBridgeIteratorTest.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 Oro\Bundle\MagentoBundle\Provider\Iterator\NewsletterSubscriberBridgeIterator;
6 6
 use Oro\Bundle\MagentoBundle\Provider\Iterator\UpdatedLoaderInterface;
7
-use Oro\Bundle\MagentoBundle\Provider\Transport\MagentoTransportInterface;
8 7
 
9 8
 class NewsletterSubscriberBridgeIteratorTest extends BaseIteratorTestCase
10 9
 {
Please login to merge, or discard this patch.
MagentoBundle/Tests/Unit/Provider/Iterator/OrderBridgeIteratorTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
     }
17 17
 
18 18
     /**
19
-     * @param array $orderArray
20
-     * @param array $stores
19
+     * @param string $orderArray
20
+     * @param string $stores
21 21
      *
22 22
      * @dataProvider dataProvider
23 23
      */
Please login to merge, or discard this patch.
Oro/Bundle/MagentoBundle/Tests/Unit/Provider/MagentoConnectorTestCase.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@
 block discarded – undo
289 289
      * @param mixed        $stepExecutionMock
290 290
      * @param null|Channel $channel
291 291
      *
292
-     * @param null         $context
292
+     * @param Context         $context
293 293
      *
294 294
      * @return AbstractMagentoConnector
295 295
      */
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,15 +4,12 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Collections\ArrayCollection;
6 6
 use Doctrine\ORM\EntityRepository;
7
-
8 7
 use Doctrine\Common\DataFixtures\AbstractFixture;
9 8
 use Doctrine\Common\Persistence\ObjectManager;
10
-
11 9
 use Oro\Bundle\OrganizationBundle\Entity\BusinessUnit;
12 10
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
13 11
 use Symfony\Component\DependencyInjection\ContainerInterface;
14 12
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
15
-
16 13
 use Oro\Bundle\UserBundle\Entity\UserManager;
17 14
 use Oro\Bundle\UserBundle\Entity\User;
18 15
 
Please login to merge, or discard this patch.
Tests/Unit/Provider/NewsletterSubscriberInitialSyncProcessorTest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Oro\Bundle\MagentoBundle\Tests\Unit\Provider;
4 4
 
5
-use Doctrine\ORM\Query\Expr;
6
-
7 5
 use Oro\Bundle\MagentoBundle\Entity\MagentoSoapTransport;
8
-use Oro\Bundle\MagentoBundle\Provider\Connector\InitialNewsletterSubscriberConnector;
9 6
 use Oro\Bundle\MagentoBundle\Provider\NewsletterSubscriberInitialSyncProcessor;
10 7
 use Oro\Bundle\MagentoBundle\Tests\Unit\Provider\Stub\InitialConnector;
11 8
 
Please login to merge, or discard this patch.
Bundle/MagentoBundle/Tests/Unit/Provider/Reader/ContextOptionReaderTest.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\Validator\Constraint;
6 6
 use Symfony\Component\Validator\ConstraintValidator;
7
-
8 7
 use OroCRM\Bundle\TaskBundle\Validator\Constraints\DueDateRequired;
9 8
 use OroCRM\Bundle\TaskBundle\Entity\Task;
10 9
 
Please login to merge, or discard this patch.