| Total Complexity | 12 |
| Total Lines | 81 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class GameRelease { |
||
| 8 | private $id; |
||
| 9 | private $game_id; |
||
| 10 | private $name; |
||
| 11 | private $date; |
||
| 12 | private $license; |
||
| 13 | private $type; |
||
| 14 | private $publisher; |
||
| 15 | private $status; |
||
| 16 | private $hd_installable; |
||
| 17 | private $notes; |
||
| 18 | private $menu; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 21 | $id, |
||
| 22 | $game_id, |
||
| 23 | $name, |
||
| 24 | $date, |
||
| 25 | $license, |
||
| 26 | $type, |
||
| 27 | $publisher, |
||
| 28 | $status, |
||
| 29 | $hd_installable, |
||
| 30 | $notes, |
||
| 31 | $menu |
||
| 32 | ) { |
||
| 33 | $this->id = $id; |
||
| 34 | $this->game_id = $game_id; |
||
| 35 | $this->name = $name; |
||
| 36 | $this->date = $date; |
||
| 37 | $this->license = $license; |
||
| 38 | $this->type = $type; |
||
| 39 | $this->publisher = $publisher; |
||
| 40 | $this->status = $status; |
||
| 41 | $this->hd_installable = $hd_installable; |
||
| 42 | $this->notes = $notes; |
||
| 43 | $this->menu = trim($menu); |
||
| 44 | } |
||
| 45 | |||
| 46 | public function getId() { |
||
| 47 | return $this->id; |
||
| 48 | } |
||
| 49 | |||
| 50 | public function getGameId() { |
||
| 51 | return $this->game_id; |
||
| 52 | } |
||
| 53 | |||
| 54 | public function getDate() { |
||
| 56 | } |
||
| 57 | |||
| 58 | public function getName() { |
||
| 60 | } |
||
| 61 | |||
| 62 | public function getLicense() { |
||
| 63 | return $this->license; |
||
| 64 | } |
||
| 65 | |||
| 66 | public function getType() { |
||
| 67 | return $this->type; |
||
| 68 | } |
||
| 69 | |||
| 70 | public function getPublisher() { |
||
| 71 | return $this->publisher; |
||
| 72 | } |
||
| 73 | |||
| 74 | public function getStatus() { |
||
| 76 | } |
||
| 77 | |||
| 78 | public function getHdInstallable() { |
||
| 79 | return $this->hd_installable; |
||
| 80 | } |
||
| 81 | |||
| 82 | public function getNotes() { |
||
| 83 | return $this->notes; |
||
| 84 | } |
||
| 85 | |||
| 86 | public function getMenu() { |
||
| 88 | } |
||
| 89 | } |
||
| 90 |