Passed
Pull Request — master (#19)
by
unknown
08:01 queued 04:49
created
src/Subjects/AbstractCustomerSubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
         $status = $this->getRegistryProcessor()->getAttribute(RegistryKeys::STATUS);
176 176
 
177 177
         // load the global data we've prepared initially
178
-        $this->storeWebsites =  $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
178
+        $this->storeWebsites = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
179 179
 
180 180
         // invoke the parent method
181 181
         parent::setUp($serial);
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
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
      */
43 43
     protected function getUniqueIdentifier()
44 44
     {
45
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
45
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
46 46
     }
47 47
 }
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
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
      */
43 43
     protected function getUniqueIdentifier()
44 44
     {
45
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
45
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
46 46
     }
47 47
 }
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
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
      */
43 43
     protected function getUniqueIdentifier()
44 44
     {
45
-        return $this->getValue(ColumnKeys::EMAIL).'-'.$this->getValue(ColumnKeys::WEBSITE);
45
+        return $this->getValue(ColumnKeys::EMAIL) . '-' . $this->getValue(ColumnKeys::WEBSITE);
46 46
     }
47 47
 }
Please login to merge, or discard this patch.