Test Setup Failed
Push — master ( 13bd30...349f0e )
by
unknown
03:34
created
src/Oro/Bundle/MagentoBundle/Validator/UniqueCustomerEmailValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
                 $value->getChannel()->getType()
44 44
             );
45 45
 
46
-            if (! $transportProvider instanceof MagentoTransportInterface) {
46
+            if (!$transportProvider instanceof MagentoTransportInterface) {
47 47
                 throw new UnexpectedTypeException($transportProvider, MagentoTransportInterface::class);
48 48
             }
49 49
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
                 /**
53 53
                  * @var $transportProvider MagentoTransportInterface
54 54
                  */
55
-                if (! $transportProvider->isCustomerHasUniqueEmail($value)) {
55
+                if (!$transportProvider->isCustomerHasUniqueEmail($value)) {
56 56
                     $this->context->buildViolation($constraint->message)
57 57
                         ->atPath('email')
58 58
                         ->addViolation();
Please login to merge, or discard this patch.
Bundle/MagentoBundle/Tests/Unit/Form/Type/CartItemCollectionTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             ->method('setNormalizers')
27 27
             ->with(
28 28
                 [
29
-                    'entry_options' => function (Options $options, $values) {
29
+                    'entry_options' => function(Options $options, $values) {
30 30
                         if (!$values) {
31 31
                             $values = [];
32 32
                         }
Please login to merge, or discard this patch.