@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | { |
| 234 | 234 | foreach ($this->dataObjectsState as $field => $value) { |
| 235 | 235 | if (\is_string($value) && $this->isStringable($current[$field])) { |
| 236 | - if ((string) $current[$field] !== $value) { |
|
| 236 | + if ((string)$current[$field] !== $value) { |
|
| 237 | 237 | unset($from[$field]); |
| 238 | 238 | } |
| 239 | 239 | continue; |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | { |
| 252 | 252 | foreach ($data as $field => $value) { |
| 253 | 253 | if ($this->isStringable($value)) { |
| 254 | - $this->dataObjectsState[$field] = (string) $value; |
|
| 254 | + $this->dataObjectsState[$field] = (string)$value; |
|
| 255 | 255 | continue; |
| 256 | 256 | } |
| 257 | 257 | if ($value instanceof DateTime) { |