Total Complexity | 4 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class UserBetting |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var int |
||
12 | */ |
||
13 | private $firstTeamResult; |
||
14 | |||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | private $secondTeamResult; |
||
19 | |||
20 | /** |
||
21 | * @return int |
||
22 | */ |
||
23 | public function getFirstTeamResult(): ?int |
||
24 | { |
||
25 | return $this->firstTeamResult; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param int $firstTeamResult |
||
30 | */ |
||
31 | public function setFirstTeamResult(?int $firstTeamResult): void |
||
32 | { |
||
33 | $this->firstTeamResult = $firstTeamResult; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return int |
||
38 | */ |
||
39 | public function getSecondTeamResult(): ?int |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param int $secondTeamResult |
||
46 | */ |
||
47 | public function setSecondTeamResult(?int $secondTeamResult): void |
||
50 | } |
||
51 | |||
53 | } |