X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/c6220ead8f050f184a549d82f64176812675a8cb..52fa9645ed8edd4a630e4d7c3382680863b9039d:/Entity/User.php diff --git a/Entity/User.php b/Entity/User.php index 6d10f33..5fc9217 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -400,6 +400,17 @@ class User implements UserInterface, \Serializable { return $this->active; } + /** + * {@inheritdoc} + */ + public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs $eventArgs) { + //Check that we have an user instance + if (($user = $eventArgs->getEntity()) instanceof User) { + //Set updated value + $user->setUpdated(new \DateTime('now')); + } + } + /** * Returns a string representation of the user *