@@ -43,7 +43,7 @@ |
||
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 | } |
@@ -36,6 +36,6 @@ |
||
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 | } |
@@ -36,6 +36,6 @@ |
||
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 | } |
@@ -36,6 +36,6 @@ |
||
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 | } |
@@ -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 |
@@ -102,7 +102,7 @@ |
||
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); |