| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class GameIndividual { |
||
| 8 | private $id; |
||
| 9 | private $game; |
||
| 10 | private $individual; |
||
| 11 | private $role; |
||
| 12 | |||
| 13 | public function __construct($id, $game, $individual, $role) { |
||
| 14 | $this->id = $id; |
||
| 15 | $this->game = $game; |
||
| 16 | $this->individual = $individual; |
||
| 17 | $this->role = $role; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getId() { |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getGame() { |
||
| 25 | return $this->game; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getIndividual() { |
||
| 29 | return $this->individual; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getRole() { |
||
| 34 | } |
||
| 35 | } |
||
| 36 |