Passed
Push — master ( 7f1e69...8f4b44 )
by
unknown
07:37 queued 04:04
created
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.