Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function prePersist(LifecycleEventArgs $args, TimestampedEntityInterface $entity): void |
||
24 | { |
||
25 | $entityManager = $args->getEntityManager(); |
||
26 | if (!$entityManager->contains($entity)) { |
||
27 | $entity->setCreated(new \DateTimeImmutable()); |
||
28 | } |
||
29 | $entity->setModified(new \DateTime()); |
||
30 | } |
||
32 |