@@ -175,7 +175,7 @@ |
||
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); |
@@ -42,6 +42,6 @@ |
||
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 | } |
@@ -42,6 +42,6 @@ |
||
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 | } |
@@ -42,6 +42,6 @@ |
||
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 | } |
@@ -261,7 +261,7 @@ |
||
261 | 261 | return $this->mergeEntity($entity, $attr); |
262 | 262 | |
263 | 263 | // try to load the customer with the given increment ID and the website id |
264 | - } elseif (!empty($attr[MemberNames::INCREMENT_ID]) && $entity = $this->loadCustomerByWebsiteIdAndIncrementId($attr[MemberNames::WEBSITE_ID], $attr[MemberNames::INCREMENT_ID])) { |
|
264 | + } elseif (!empty($attr[MemberNames::INCREMENT_ID]) && $entity = $this->loadCustomerByWebsiteIdAndIncrementId($attr[MemberNames::WEBSITE_ID], $attr[MemberNames::INCREMENT_ID])) { |
|
265 | 265 | // clear row elements that are not allowed to be updated |
266 | 266 | $attr = $this->clearRowData($attr, true); |
267 | 267 |