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