Test Setup Failed
Push — master ( b179bb...00b2d5 )
by
unknown
03:49
created
src/Oro/Bundle/ProductBundle/Form/Type/ProductUnitPrecisionType.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,10 +57,10 @@
 block discarded – undo
57 57
                     'unit_disabled',
58 58
                     ProductUnitSelectType::class,
59 59
                     [
60
-                       'compact' => $options['compact'],
61
-                       'disabled' => $disabled,
62
-                       'mapped' => false,
63
-                       'data' => $unitPrecision->getUnit()
60
+                        'compact' => $options['compact'],
61
+                        'disabled' => $disabled,
62
+                        'mapped' => false,
63
+                        'data' => $unitPrecision->getUnit()
64 64
                     ]
65 65
                 );
66 66
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             ->add('conversionRate', NumberType::class, ['required' => false])
47 47
             ->add('sell', CheckboxType::class, ['required' => false]);
48 48
 
49
-        $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use ($options) {
49
+        $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) use ($options) {
50 50
             $unitPrecision = $event->getData();
51 51
             $form = $event->getForm();
52 52
 
Please login to merge, or discard this patch.