Passed
Push — extend-customer-import ( 993c9f )
by
unknown
08:15
created
src/Subjects/AbstractCustomerAddressSubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         $status = $this->getRegistryProcessor()->getAttribute(RegistryKeys::STATUS);
103 103
 
104 104
         // load the global data we've prepared initially
105
-        $this->storeWebsites =  $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
105
+        $this->storeWebsites = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
106 106
 
107 107
         // invoke the parent method
108 108
         parent::setUp($serial);
Please login to merge, or discard this patch.
src/Observers/CustomerAddressExportObserver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         $artefacts[] = $this->newArtefact(
87 87
             array(
88 88
                 ColumnKeys::ENTITY_ID                => $this->getValue(ColumnKeys::ENTITY_ID) ?? null,
89
-                ColumnKeys::INCREMENT_ID             => $this->getValue(ColumnKeys::INCREMENT_ID)?? null,
89
+                ColumnKeys::INCREMENT_ID             => $this->getValue(ColumnKeys::INCREMENT_ID) ?? null,
90 90
                 ColumnKeys::EMAIL                    => $email,
91 91
                 ColumnKeys::WEBSITE                  => $this->getValue(ColumnKeys::WEBSITE),
92 92
                 ColumnKeys::CITY                     => $this->getValue(ColumnKeys::ADDRESS_CITY),
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             ),
109 109
             array(
110 110
                 ColumnKeys::ENTITY_ID                => $this->getValue(ColumnKeys::ENTITY_ID) ?? null,
111
-                ColumnKeys::INCREMENT_ID             => $this->getValue(ColumnKeys::INCREMENT_ID)?? null,
111
+                ColumnKeys::INCREMENT_ID             => $this->getValue(ColumnKeys::INCREMENT_ID) ?? null,
112 112
                 ColumnKeys::WEBSITE                  => ColumnKeys::WEBSITE,
113 113
                 ColumnKeys::EMAIL                    => ColumnKeys::EMAIL,
114 114
                 ColumnKeys::CITY                     => ColumnKeys::ADDRESS_CITY,
Please login to merge, or discard this patch.