1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/* |
6
|
|
|
* This file is part of the Superdesk Web Publisher Content Bundle. |
7
|
|
|
* |
8
|
|
|
* Copyright 2020 Sourcefabric z.ú. and contributors. |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, please see the |
11
|
|
|
* AUTHORS and LICENSE files distributed with this source code. |
12
|
|
|
* |
13
|
|
|
* @copyright 2020 Sourcefabric z.ú |
14
|
|
|
* @license http://www.superdesk.org/license |
15
|
|
|
*/ |
16
|
|
|
|
17
|
|
|
namespace SWP\Bundle\ContentBundle\Model; |
18
|
|
|
|
19
|
|
|
class Place implements PlaceInterface |
20
|
|
|
{ |
21
|
|
|
/** @var int */ |
22
|
|
|
protected $id; |
23
|
|
|
|
24
|
|
|
/** @var string|null */ |
25
|
|
|
protected $country; |
26
|
|
|
|
27
|
|
|
/** @var string|null */ |
28
|
|
|
protected $worldRegion; |
29
|
|
|
|
30
|
|
|
/** @var string|null */ |
31
|
|
|
protected $state; |
32
|
|
|
|
33
|
|
|
/** @var string|null */ |
34
|
|
|
protected $qcode; |
35
|
|
|
|
36
|
|
|
/** @var string|null */ |
37
|
|
|
protected $name; |
38
|
|
|
|
39
|
|
|
/** @var string|null */ |
40
|
|
|
protected $qgroup; |
41
|
|
|
|
42
|
|
|
/** @var MetadataInterface|null */ |
43
|
|
|
protected $metadata; |
44
|
|
|
|
45
|
|
|
public function getId(): int |
46
|
|
|
{ |
47
|
|
|
return $this->id; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function getMetadata(): ?MetadataInterface |
51
|
|
|
{ |
52
|
|
|
return $this->metadata; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
public function setMetadata(?MetadataInterface $metadata): void |
56
|
|
|
{ |
57
|
|
|
$this->metadata = $metadata; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function getCountry(): ?string |
61
|
|
|
{ |
62
|
|
|
return $this->country; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function setCountry(?string $country): void |
66
|
|
|
{ |
67
|
|
|
$this->country = $country; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
public function getWorldRegion(): ?string |
71
|
|
|
{ |
72
|
|
|
return $this->worldRegion; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function setWorldRegion(?string $worldRegion): void |
76
|
|
|
{ |
77
|
|
|
$this->worldRegion = $worldRegion; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
public function getState(): ?string |
81
|
|
|
{ |
82
|
|
|
return $this->state; |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
public function setState(?string $state): void |
86
|
|
|
{ |
87
|
|
|
$this->state = $state; |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public function getQcode(): ?string |
91
|
|
|
{ |
92
|
|
|
return $this->qcode; |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
public function setQcode(?string $qcode): void |
96
|
|
|
{ |
97
|
|
|
$this->qcode = $qcode; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
public function getName(): ?string |
101
|
|
|
{ |
102
|
|
|
return $this->name; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
public function setName(?string $name): void |
106
|
|
|
{ |
107
|
|
|
$this->name = $name; |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
public function getGroup(): ?string |
111
|
|
|
{ |
112
|
|
|
return $this->qgroup; |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
public function setGroup(?string $group): void |
116
|
|
|
{ |
117
|
|
|
$this->qgroup = $group; |
118
|
|
|
} |
119
|
|
|
} |
120
|
|
|
|