X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/983224cfd5fdfb38707e16bc169536f079004337..2ef0c16b8202ff4e360b7dc31fc3e24336303bd5:/Entity/Snippet.php diff --git a/Entity/Snippet.php b/Entity/Snippet.php index 20a1940..f8ae7d2 100644 --- a/Entity/Snippet.php +++ b/Entity/Snippet.php @@ -319,4 +319,15 @@ class Snippet { public function getUser() { return $this->user; } + + /** + * {@inheritdoc} + */ + public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs $eventArgs) { + //Check that we have an snippet instance + if (($snippet = $eventArgs->getEntity()) instanceof Snippet) { + //Set updated value + $snippet->setUpdated(new \DateTime('now')); + } + } }