| Total Complexity | 4 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait RankPointGameTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @ORM\Column(name="rankPointGame", type="integer", nullable=false) |
||
| 11 | */ |
||
| 12 | private ?int $rankPointGame = 0; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @ORM\Column(name="pointChart", type="integer", nullable=false) |
||
| 16 | */ |
||
| 17 | private int $pointGame= 0; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param int $rankPointGame |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | public function setRankPointGame(int $rankPointGame): void |
||
| 24 | { |
||
| 25 | $this->rankPointGame = $rankPointGame; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get rankPointGame |
||
| 30 | * @return integer |
||
| 31 | */ |
||
| 32 | public function getRankPointGame(): int |
||
| 33 | { |
||
| 34 | return $this->rankPointGame; |
||
|
|
|||
| 35 | } |
||
| 36 | |||
| 37 | |||
| 38 | /** |
||
| 39 | * @param int $pointGame |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | public function setPointGame(int $pointGame): void |
||
| 43 | { |
||
| 44 | $this->pointGame = $pointGame; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Get pointGame |
||
| 49 | * @return integer |
||
| 50 | */ |
||
| 51 | public function getPointGame(): int |
||
| 54 | } |
||
| 55 | } |
||
| 56 |