X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/0faa28c6e8450f485e08e212d301b3928608278d..9fb10550fdb3dadf8dd5d6b2751c2d7c5e5e3f82:/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')); + } + } }