| Total Complexity | 2 | 
| Total Lines | 28 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 5 | trait NbTeamTrait  | 
            ||
| 6 | { | 
            ||
| 7 | /**  | 
            ||
| 8 |      * @ORM\Column(name="nbTeam", type="integer", nullable=false, options={"default":0}) | 
            ||
| 9 | */  | 
            ||
| 10 | private int $nbTeam = 0;  | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * Set nbTeam  | 
            ||
| 14 | *  | 
            ||
| 15 | * @param integer $nbTeam  | 
            ||
| 16 | * @return $this  | 
            ||
| 17 | */  | 
            ||
| 18 | public function setNbTeam(int $nbTeam): static  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * Get nbTeam  | 
            ||
| 27 | *  | 
            ||
| 28 | * @return integer  | 
            ||
| 29 | */  | 
            ||
| 30 | public function getNbTeam(): int  | 
            ||
| 35 |