X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/d3c8ab5a395adc36ec3095e7effb6f0db195887b..2884b5c8b4514b0e1c0dd0449db2af5be32382b6:/Entity/Session.php diff --git a/Entity/Session.php b/Entity/Session.php index 1cba677..f74963c 100644 --- a/Entity/Session.php +++ b/Entity/Session.php @@ -1,11 +1,11 @@ + * (c) Raphaël Gertz * - * for the full copyright and license information, please view the license + * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ @@ -97,7 +97,7 @@ class Session { private ?\DateTime $locked = null; /** - * Creation datetime + * Create datetime */ private \DateTime $created; @@ -123,6 +123,8 @@ class Session { //Set defaults $this->created = new \DateTime('now'); $this->updated = new \DateTime('now'); + + //Set collections $this->applications = new ArrayCollection(); }