]> Raphaël G. Git Repositories - userbundle/commitdiff
Initialize all fields
authorRaphaël Gertz <git@rapsys.eu>
Sat, 28 Aug 2021 09:08:26 +0000 (11:08 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Sat, 28 Aug 2021 09:08:26 +0000 (11:08 +0200)
Cleanup

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();
        }