Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class GameReleaseAKA { |
||
9 | private $id; |
||
10 | private $game_release_id; |
||
11 | private $name; |
||
12 | private $language; |
||
13 | |||
14 | public function __construct($id, $game_release_id, $name, $language) { |
||
15 | $this->id = $id; |
||
16 | $this->game_release_id = $game_release_id; |
||
17 | $this->name = $name; |
||
18 | $this->language = $language; |
||
19 | } |
||
20 | |||
21 | public function getId() { |
||
22 | return $this->id; |
||
23 | } |
||
24 | |||
25 | public function getGameReleaseId() { |
||
26 | return $this->game_release_id; |
||
27 | } |
||
28 | |||
29 | public function getName() { |
||
31 | } |
||
32 | |||
33 | public function getLanguage() { |
||
35 | } |
||
36 | } |
||
37 |