<?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.
*/
namespace Rapsys\AirBundle\Entity;
+use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Event\PreUpdateEventArgs;
*/
class Location {
/**
- * @var integer
+ * Primary key
*/
- private $id;
+ private ?int $id = null;
/**
* @var string
*/
- private $title;
+ private ?string $description = null;
/**
- * @var string
- */
- protected $description;
-
- /**
- * @var string
- */
- private $address;
-
- /**
- * @var string
- */
- private $zipcode;
-
- /**
- * @var string
+ * Create datetime
*/
- private $city;
+ private \DateTime $created;
/**
- * @var string
+ * Update datetime
*/
- private $latitude;
+ private \DateTime $updated;
/**
- * @var string
+ * Sessions collection
*/
- private $longitude;
+ private Collection $sessions;
/**
- * @var bool
+ * Snippets collection
*/
- private $indoor;
+ private Collection $snippets;
/**
- * @var bool
+ * Users collection
*/
- private $hotspot;
-
- /**
- * @var \DateTime
- */
- private $created;
-
- /**
- * @var \DateTime
- */
- private $updated;
-
- /**
- * @var ArrayCollection
- */
- private $sessions;
-
- /**
- * @var ArrayCollection
- */
- private $snippets;
-
- /**
- * @var ArrayCollection
- */
- private $users;
+ private Collection $users;
/**
* Constructor
*/
- public function __construct() {
+ public function __construct(private string $title = '', private string $address = '', private string $zipcode = '0', private string $city = '', private string $latitude = '0', private string $longitude = '0', private bool $hotspot = false, private bool $indoor = false) {
//Set defaults
- $this->description = null;
$this->created = new \DateTime('now');
$this->updated = new \DateTime('now');
+
+ //Set collections
$this->sessions = new ArrayCollection();
$this->snippets = new ArrayCollection();
$this->users = new ArrayCollection();
*
* @return integer
*/
- public function getId(): int {
+ public function getId(): ?int {
return $this->id;
}