Excluded/ODM/DocumentEntity.php 1 location
|
@@ 266-270 (lines=5) @@
|
| 263 |
|
|
| 264 |
|
parent::setField($name, $value, $filter); |
| 265 |
|
|
| 266 |
|
if (!array_key_exists($name, $this->updates)) { |
| 267 |
|
$this->updates[$name] = $original instanceof AccessorInterface |
| 268 |
|
? $original->serializeData() |
| 269 |
|
: $original; |
| 270 |
|
} |
| 271 |
|
} |
| 272 |
|
|
| 273 |
|
/** |
Excluded/ORM/RecordEntity.php 1 location
|
@@ 350-354 (lines=5) @@
|
| 347 |
|
parent::setField($name, $value, $filter); |
| 348 |
|
} |
| 349 |
|
|
| 350 |
|
if (!array_key_exists($name, $this->updates)) { |
| 351 |
|
$this->updates[$name] = $original instanceof AccessorInterface |
| 352 |
|
? $original->serializeData() |
| 353 |
|
: $original; |
| 354 |
|
} |
| 355 |
|
} |
| 356 |
|
|
| 357 |
|
/** |