Passed
Push — master ( b073f2...a31a9d )
by
unknown
03:40
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/CustomerAddressObserver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         $customer = $this->loadCustomerByEmailAndWebsiteId($this->getValue(ColumnKeys::EMAIL), $websiteId);
106 106
 
107 107
         if (!$customer) {
108
-            $message =  sprintf(
108
+            $message = sprintf(
109 109
                 'the imported address has no customer with email %s',
110 110
                 $this->getValue(ColumnKeys::EMAIL)
111 111
             );
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         } catch (\Exception $e) {
318 318
             return $value;
319 319
         }
320
-        if (isset($telConfig) && $telConfig !==  'req') {
320
+        if (isset($telConfig) && $telConfig !== 'req') {
321 321
             return !empty($value) ? $value : '';
322 322
         }
323 323
         return $value;
Please login to merge, or discard this patch.