1 | <?php |
||
5 | class Ranking |
||
6 | { |
||
7 | /** @var int */ |
||
8 | protected $id; |
||
9 | /** @var bool **/ |
||
10 | protected $isPlayer; |
||
11 | /** @var bool **/ |
||
12 | protected $isFaction; |
||
13 | /** @var string **/ |
||
14 | protected $createdAt; |
||
15 | |||
16 | /** |
||
17 | * @param int $id |
||
18 | * @return Ranking |
||
19 | */ |
||
20 | public function setId($id) |
||
26 | |||
27 | /** |
||
28 | * @return int |
||
29 | */ |
||
30 | public function getId() |
||
34 | |||
35 | /** |
||
36 | * @param bool $isPlayer |
||
37 | * @return Ranking |
||
38 | */ |
||
39 | public function setIsPlayer($isPlayer) |
||
45 | |||
46 | /** |
||
47 | * @return bool |
||
48 | */ |
||
49 | public function getIsPlayer() |
||
53 | |||
54 | /** |
||
55 | * @param bool $isFaction |
||
56 | * @return Ranking |
||
57 | */ |
||
58 | public function setIsFaction($isFaction) |
||
64 | |||
65 | /** |
||
66 | * @return bool |
||
67 | */ |
||
68 | public function getIsFaction() |
||
72 | |||
73 | /** |
||
74 | * @param string $createdAt |
||
75 | * @return Ranking |
||
76 | */ |
||
77 | public function setCreatedAt($createdAt) |
||
83 | |||
84 | /** |
||
85 | * @return string |
||
86 | */ |
||
87 | public function getCreatedAt() |
||
91 | } |