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