*/
private ?int $id = null;
- /**
- * @var string
- */
- private $title;
-
/**
* @var string
*/
private ?string $description = null;
- /**
- * @var string
- */
- private $address;
-
- /**
- * @var string
- */
- private $zipcode;
-
- /**
- * @var string
- */
- private $city;
-
- /**
- * @var string
- */
- private $latitude;
-
- /**
- * @var string
- */
- private $longitude;
-
- /**
- * @var bool
- */
- private $indoor;
-
- /**
- * @var bool
- */
- private $hotspot;
-
/**
* Create datetime
*/
/**
* 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->created = new \DateTime('now');
$this->updated = new \DateTime('now');