@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | foreach ($this->getColumnNamesToConvert() as $columnName) { |
50 | 50 | // convert the value, if the attribute code match |
51 | 51 | if ($this->hasValue($columnName)) { |
52 | - $this->setValue($columnName, $this->getNumberConverter()->convert($this->getValue($columnName, null, function ($value) { |
|
52 | + $this->setValue($columnName, $this->getNumberConverter()->convert($this->getValue($columnName, null, function($value) { |
|
53 | 53 | return trim($value); |
54 | 54 | }))); |
55 | 55 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | */ |
86 | 86 | protected function getEavAttributesByBackendType($backendType) |
87 | 87 | { |
88 | - return array_filter($this->getSubject()->getAttributes(), function ($attribute) use ($backendType) { |
|
88 | + return array_filter($this->getSubject()->getAttributes(), function($attribute) use ($backendType) { |
|
89 | 89 | return $attribute[MemberNames::BACKEND_TYPE] === $backendType; |
90 | 90 | }); |
91 | 91 | } |