X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/1b020b02e1d1fa56e737c8c5dbf5d7e5f48d587e..f0ed7af138b95f31354f8d5a37cb4cd27b902a75:/Entity/Dance.php diff --git a/Entity/Dance.php b/Entity/Dance.php index fa07ba9..e3779da 100644 --- a/Entity/Dance.php +++ b/Entity/Dance.php @@ -52,6 +52,9 @@ class Dance { * Constructor */ public function __construct() { + //Set defaults + $this->created = new \DateTime('now'); + $this->updated = new \DateTime('now'); $this->applications = new ArrayCollection(); $this->users = new ArrayCollection(); }