Total Complexity | 7 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class Interview { |
||
10 | private $id; |
||
11 | private $intro; |
||
12 | private $date; |
||
13 | private $user; |
||
14 | private $individual; |
||
15 | |||
16 | public function __construct($id, $intro, $date, $user, $individual) { |
||
22 | } |
||
23 | |||
24 | public function getId() { |
||
26 | } |
||
27 | |||
28 | public function getIntro() { |
||
30 | } |
||
31 | |||
32 | public function getDate() { |
||
33 | return $this->date; |
||
34 | } |
||
35 | |||
36 | public function getUser() { |
||
37 | return $this->user; |
||
38 | } |
||
39 | |||
40 | public function getIndividual() { |
||
41 | return $this->individual; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return string The HTML text for the intro |
||
46 | */ |
||
47 | public function getIntroHtml() { |
||
49 | } |
||
50 | } |
||
51 |