Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
8 | class Widget implements Renderable, Htmlable |
||
9 | { |
||
10 | /** |
||
11 | * Get content as a string of HTML. |
||
12 | * |
||
13 | * @return string |
||
14 | */ |
||
15 | public function toHtml() |
||
17 | // TODO: Implement toHtml() method. |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Get the evaluated contents of the object. |
||
22 | * |
||
23 | * @return string |
||
24 | */ |
||
25 | public function render() |
||
29 |