Passed
Push — customer-address-region-fields ( 7ae1bd...17ba73 )
by
unknown
09:52
created
src/Plugins/GlobalDataPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public function __construct(
44 44
         ApplicationInterface $application,
45 45
         CustomerBunchProcessorInterface $customerBunchProcessor
46
-    ){
46
+    ) {
47 47
         $this->customerBunchProcessor = $customerBunchProcessor;
48 48
         parent::__construct($application);
49 49
     }
Please login to merge, or discard this patch.
src/Callbacks/SelectCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,6 +36,6 @@
 block discarded – undo
36 36
      */
37 37
     protected function getUniqueIdentifier()
38 38
     {
39
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
39
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Subjects/AbstractCustomerSubject.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/Callbacks/BooleanCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,6 +36,6 @@
 block discarded – undo
36 36
      */
37 37
     protected function getUniqueIdentifier()
38 38
     {
39
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
39
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Callbacks/MultiselectCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,6 +36,6 @@
 block discarded – undo
36 36
      */
37 37
     protected function getUniqueIdentifier()
38 38
     {
39
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
39
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.