Test Setup Failed
Push — master ( bd6fa1...4e73a8 )
by
unknown
03:40
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.
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.
Unit/Discount/Converter/OrderLineItemsToDiscountLineItemsConverterTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,6 +73,6 @@
 block discarded – undo
73 73
                         ->setSubtotal($price->getValue() * $lineItem->getQuantity())
74 74
                 ]
75 75
             ]
76
-         ];
76
+            ];
77 77
     }
78 78
 }
Please login to merge, or discard this patch.
Tests/Unit/Discount/Converter/LineItemsToDiscountLineItemsConverterTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,6 +105,6 @@
 block discarded – undo
105 105
                         ->setSourceLineItem($lineItem)
106 106
                         ->setSubtotal(0)]
107 107
             ],
108
-         ];
108
+            ];
109 109
     }
110 110
 }
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
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
             ->willReturn([
224 224
                             [Item::class],
225 225
                             [self::WEBSITE_ID]
226
-                         ]);
226
+                            ]);
227 227
 
228 228
         $this->messageProducer->expects($this->atLeastOnce())
229 229
             ->method('send')
Please login to merge, or discard this patch.