Passed
Push — master ( 7f1e69...8f4b44 )
by
unknown
07:37 queued 04:04
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
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $customer = $this->loadCustomerByEmailAndWebsiteId($this->getValue(ColumnKeys::EMAIL), $websiteId);
93 93
 
94 94
         if (!$customer) {
95
-            $message =  sprintf(
95
+            $message = sprintf(
96 96
                 'the imported address has no customer with email %s',
97 97
                 $this->getValue(ColumnKeys::EMAIL)
98 98
             );
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     public function checkCustomerPhoneConfig($value)
287 287
     {
288 288
         $telConfig = $this->getSubject()->getCoreConfigData(CoreConfigDataKeys::CUSTOMER_ADDRESS_TELEPHONE_SHOW);
289
-        if (isset($telConfig) && $telConfig !==  'req') {
289
+        if (isset($telConfig) && $telConfig !== 'req') {
290 290
             return !empty($value) ? $value : '';
291 291
         }
292 292
         return $value;
Please login to merge, or discard this patch.