| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | public function prePersist($entity) |
||
| 25 | { |
||
| 26 | if ($entity->getCreatedBy() === null) { |
||
| 27 | $entity->setCreatedAt(new \DateTime()); |
||
| 28 | $entity->setCreatedBy($this->user); |
||
| 29 | } |
||
| 30 | if ($entity->getUpdatedBy() === null) { |
||
| 31 | $entity->setUpdatedAt(new \DateTime()); |
||
| 32 | $entity->setUpdatedBy($this->user); |
||
| 33 | } |
||
| 42 |