Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class Link extends Base |
||
16 | { |
||
17 | 1 | public function __construct($title = '') |
|
18 | { |
||
19 | 1 | parent::__construct(); |
|
20 | 1 | $this->title($title); |
|
21 | 1 | $this->bodyName = 'link'; |
|
22 | 1 | } |
|
23 | |||
24 | 1 | protected function getBody() |
|
27 | } |
||
28 | |||
29 | 1 | protected function bodyFields() |
|
32 | } |
||
33 | |||
34 | 1 | protected function validate() |
|
40 | } |
||
41 | } |