@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | { |
237 | 237 | foreach ($this->dataObjectsState as $field => $value) { |
238 | 238 | if (is_string($value) && $this->isStringable($current[$field])) { |
239 | - if ((string) $current[$field] !== $value) { |
|
239 | + if ((string)$current[$field] !== $value) { |
|
240 | 240 | unset($from[$field]); |
241 | 241 | } |
242 | 242 | continue; |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | { |
255 | 255 | foreach ($data as $field => $value) { |
256 | 256 | if ($this->isStringable($value)) { |
257 | - $this->dataObjectsState[$field] = (string) $value; |
|
257 | + $this->dataObjectsState[$field] = (string)$value; |
|
258 | 258 | continue; |
259 | 259 | } |
260 | 260 | if ($value instanceof DateTime) { |