| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | protected function mapSingleRow($className, array $row) |
||
| 29 | { |
||
| 30 | /** @var AbstractEntity $object */ |
||
| 31 | $object = $this->createEmptyObject($className); |
||
| 32 | $this->persistenceSession->registerObject($object, $row['uid']); |
||
| 33 | $this->thawProperties($object, $row); |
||
| 34 | $object->_memorizeCleanState(); |
||
| 35 | $this->persistenceSession->registerReconstitutedEntity($object); |
||
| 36 | |||
| 37 | return $object; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |