X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/d3c8ab5a395adc36ec3095e7effb6f0db195887b..7fb4966e3d8a42c7199ab35d5f798105bcb65b73:/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 @@ <?php declare(strict_types=1); /* - * this file is part of the rapsys packbundle package. + * This file is part of the Rapsys AirBundle package. * - * (c) raphaël gertz <symfony@rapsys.eu> + * (c) Raphaël Gertz <symfony@rapsys.eu> * - * 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(); }