X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/010e38c2810846d5812a0ec91df98cddfdef8de4..2c41869f7799d2d116a4062a3cabbfcf69dfa149:/Entity/Snippet.php

diff --git a/Entity/Snippet.php b/Entity/Snippet.php
index 4e9d406..a764a66 100644
--- a/Entity/Snippet.php
+++ b/Entity/Snippet.php
@@ -96,6 +96,7 @@ class Snippet {
 	 * Constructor
 	 */
 	public function __construct() {
+		//Set defaults
 		$this->description = null;
 		$this->class = null;
 		$this->short = null;
@@ -105,6 +106,9 @@ class Snippet {
 		$this->donate = null;
 		$this->link = null;
 		$this->profile = null;
+		$this->location = null;
+		$this->created = new \DateTime('now');
+		$this->updated = new \DateTime('now');
 	}
 
 	/**
@@ -426,7 +430,7 @@ class Snippet {
 	/**
 	 * {@inheritdoc}
 	 */
-	public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs  $eventArgs) {
+	public function preUpdate(PreUpdateEventArgs $eventArgs) {
 		//Check that we have an snippet instance
 		if (($snippet = $eventArgs->getEntity()) instanceof Snippet) {
 			//Set updated value