Test Setup Failed
Push — master ( fe3d4c...e44f29 )
by
unknown
03:25
created
Oro/Bundle/PricingBundle/Migrations/Schema/OroPricingBundleInstaller.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -251,10 +251,10 @@
 block discarded – undo
251 251
         );
252 252
         $table->addIndex(
253 253
             ['combined_price_list_id',
254
-             'product_id',
255
-             'unit_code',
256
-             'quantity',
257
-             'currency'],
254
+                'product_id',
255
+                'unit_code',
256
+                'quantity',
257
+                'currency'],
258 258
             'oro_combined_price_idx'
259 259
         );
260 260
         $table->addIndex(
Please login to merge, or discard this patch.
Tests/Unit/EventListener/WebsiteSearchCategoryIndexerListenerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,10 +171,10 @@
 block discarded – undo
171 171
         $expected[$product->getId()] = [
172 172
             'category_id' => [
173 173
                 ['value' => 555, 'all_text' => false],
174
-             ],
174
+                ],
175 175
             'category_path' => [
176 176
                 ['value' => '1_555', 'all_text' => false],
177
-             ],
177
+                ],
178 178
             'category_path_' . CategoryPathPlaceholder::NAME => [
179 179
                 [
180 180
                     'value' => new PlaceholderValue(1, [CategoryPathPlaceholder::NAME => '1']),
Please login to merge, or discard this patch.
src/Oro/Bundle/CatalogBundle/Model/ExtendCategory.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
  * @method removeProduct(Product $value)
28 28
  * @method ArrayCollection getProducts()
29 29
  * @method addProduct(Product $value)
30
-
31 30
  */
32 31
 class ExtendCategory
33 32
 {
Please login to merge, or discard this patch.
src/Oro/Bundle/ProductBundle/Form/Type/ProductUnitPrecisionType.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,10 +55,10 @@
 block discarded – undo
55 55
                     'unit_disabled',
56 56
                     ProductUnitSelectType::NAME,
57 57
                     [
58
-                       'compact' => $options['compact'],
59
-                       'disabled' => $disabled,
60
-                       'mapped' => false,
61
-                       'data' => $unitPrecision->getUnit()
58
+                        'compact' => $options['compact'],
59
+                        'disabled' => $disabled,
60
+                        'mapped' => false,
61
+                        'data' => $unitPrecision->getUnit()
62 62
                     ]
63 63
                 );
64 64
 
Please login to merge, or discard this patch.
src/Oro/Bundle/ProductBundle/Entity/Repository/ProductRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@
 block discarded – undo
305 305
                         );
306 306
 
307 307
         $qb->where($qb->expr()->eq('pi.product', ':product_id'))
308
-           ->setParameter('product_id', $productId);
308
+            ->setParameter('product_id', $productId);
309 309
 
310 310
         return $qb->getQuery()->execute();
311 311
     }
Please login to merge, or discard this patch.
Unit/EventListener/ScopedProductSearchQueryRestrictionEventListenerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use Oro\Bundle\ProductBundle\EventListener\ScopedProductSearchQueryRestrictionEventListener;
10 10
 
11 11
 class ScopedProductSearchQueryRestrictionEventListenerTest extends
12
- AbstractProductSearchQueryRestrictionEventListenerTest
12
+    AbstractProductSearchQueryRestrictionEventListenerTest
13 13
 {
14 14
     const SCOPE = 'test_scope';
15 15
 
Please login to merge, or discard this patch.
src/Oro/Bundle/RedirectBundle/Tests/Unit/Cache/UrlStorageCacheTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
         $storage = $this->getMockBuilder(UrlDataStorage::class)
252 252
             ->disableOriginalConstructor()
253 253
             ->getMock();
254
-         /** @var UrlDataStorage|\PHPUnit_Framework_MockObject_MockObject $oldStorage */
254
+            /** @var UrlDataStorage|\PHPUnit_Framework_MockObject_MockObject $oldStorage */
255 255
         $oldStorage = $this->getMockBuilder(UrlDataStorage::class)
256 256
             ->disableOriginalConstructor()
257 257
             ->getMock();
Please login to merge, or discard this patch.
src/Oro/Bundle/CheckoutBundle/Datagrid/CheckoutGridListener.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@
 block discarded – undo
90 90
             [self::USER_CURRENCY_PARAMETER]
91 91
         );
92 92
         $event->getDatagrid()
93
-              ->getParameters()
94
-              ->set(self::USER_CURRENCY_PARAMETER, $this->currencyManager->getUserCurrency());
93
+                ->getParameters()
94
+                ->set(self::USER_CURRENCY_PARAMETER, $this->currencyManager->getUserCurrency());
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.
src/Oro/Bundle/WebsiteSearchBundle/Tests/Unit/Engine/AsyncIndexerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
             ->willReturn([
229 229
                             [Item::class],
230 230
                             [self::WEBSITE_ID]
231
-                         ]);
231
+                            ]);
232 232
 
233 233
         $this->granularizer->expects($this->atLeastOnce())
234 234
             ->method('process')
Please login to merge, or discard this patch.