Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Media { |
||
8 | private $id; |
||
9 | private $label; |
||
10 | private $media_type; |
||
11 | |||
12 | public function __construct($id, $label, $media_type) { |
||
13 | $this->id = $id; |
||
14 | $this->label = $label; |
||
15 | $this->media_type = $media_type; |
||
16 | } |
||
17 | |||
18 | public function getId() { |
||
20 | } |
||
21 | |||
22 | public function getLabel() { |
||
23 | return $this->label; |
||
24 | } |
||
25 | |||
26 | public function getMediaType() { |
||
28 | } |
||
29 | } |
||
30 |