Newer
Older
use Ramsey\Collection\Collection;
class RestaurantDetailElement
{
private int $id;
private string $name;
private string $code;
private string $coordinates;
private RestaurantType $type;
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
private string $check;
private string $checkInfo;
/**
* @var Collection<KitchenType>
*/
private Collection $kitchen;
/**
* @var Collection<string>
*/
private Collection $phone;
/**
* @var Collection<string>
*/
private Collection $email;
/**
* @var Collection<string>
*/
private Collection $address;
/**
* @var Collection<Tag>
*/
private Collection $tags;
private string $site;
private File $image;
/**
* @var Collection<File>
*/
private Collection $gallery;
private string $seoTitle;
private string $seoDescription;
private string $seoKeywords;
public function __construct(
int $id,
string $name,
string $code,
string $coordinates,
RestaurantType $type,
string $check,
string $checkInfo,
Collection $kitchen,
Collection $phone,
Collection $email,
Collection $address,
Collection $tags,
string $site,
File $image,
Collection $gallery,
string $seoTitle,
string $seoDescription,
string $seoKeywords
) {
$this->id = $id;
$this->name = $name;
$this->code = $code;
$this->coordinates = $coordinates;
$this->type = $type;
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
$this->check = $check;
$this->checkInfo = $checkInfo;
$this->kitchen = $kitchen;
$this->phone = $phone;
$this->email = $email;
$this->address = $address;
$this->tags = $tags;
$this->site = $site;
$this->image = $image;
$this->gallery = $gallery;
$this->seoTitle = $seoTitle;
$this->seoDescription = $seoDescription;
$this->seoKeywords = $seoKeywords;
}
public function getId(): int
{
return $this->id;
}
public function getName(): string
{
return $this->name;
}
public function getCode(): string
{
return $this->code;
}
public function getCoordinates(): string
{
return $this->coordinates;
}
public function getType(): RestaurantType
{
return $this->type;
}
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
public function getCheck(): string
{
return $this->check;
}
public function getCheckInfo(): string
{
return $this->checkInfo;
}
public function getKitchen(): Collection
{
return $this->kitchen;
}
public function getPhone(): Collection
{
return $this->phone;
}
public function getEmail(): Collection
{
return $this->email;
}
public function getAddress(): Collection
{
return $this->address;
}
public function getTags(): Collection
{
return $this->tags;
}
public function getSite(): string
{
return $this->site;
}
public function getImage(): File
{
return $this->image;
}
public function getGallery(): Collection
{
return $this->gallery;
}
public function getSeoTitle(): string
{
return $this->seoTitle;
}
public function getSeoDescription(): string
{
return $this->seoDescription;
}
public function getSeoKeywords(): string
{
return $this->seoKeywords;
}
}