]> Raphaël G. Git Repositories - userbundle/blobdiff - Entity/Group.php
Initialize all fields
[userbundle] / Entity / Group.php
index 188e1bce5c188e851047706041cb81285040687d..c97515c1f36f1e3ad260136508df93dc87f42cb0 100644 (file)
@@ -1,7 +1,7 @@
 <?php declare(strict_types=1);
 
 /*
- * This file is part of the Rapsys PackBundle package.
+ * This file is part of the Rapsys UserBundle package.
  *
  * (c) Raphaël Gertz <symfony@rapsys.eu>
  *
@@ -51,7 +51,10 @@ class Group {
         * @param string $title The group name
         */
        public function __construct(string $title) {
+               //Set defaults
                $this->title = $title;
+               $this->created = new \DateTime('now');
+               $this->updated = new \DateTime('now');
                $this->users = new ArrayCollection();
        }