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

Entity/Civility.php

index 4d2671a1dee821fd8e44bd25fa1288dd52f24e64..9ec56e9053f16b299b72772195313401725fbb54 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 Civility {
         * @param string $title The civility 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();
        }