Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
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
51
52
53
<?php
namespace App\Model;
use DateTime;
class Review
{
private int $id;
private DateTime $date;
private int $score;
private string $text;
private string $userName;
public function __construct(
int $id,
DateTime $date,
int $score,
string $text,
string $userName
) {
$this->id = $id;
$this->date = $date;
$this->score = $score;
$this->text = $text;
$this->userName = $userName;
}
public function getId(): int
{
return $this->id;
}
public function getDate(): DateTime
{
return $this->date;
}
public function getScore(): int
{
return $this->score;
}
public function getText(): string
{
return $this->text;
}
public function getUserName(): string
{
return $this->userName;
}
}