Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | class InlineElement extends HtmlElement |
||
30 | { |
||
31 | /** |
||
32 | * @access private |
||
33 | * @var string $htmlContent |
||
34 | */ |
||
35 | private $htmlContent = ''; |
||
36 | |||
37 | /** |
||
38 | * Constructor |
||
39 | * |
||
40 | * @access public |
||
41 | * @param string $content The html content string |
||
42 | */ |
||
43 | public function __construct(string $content) |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * Gets the HTML |
||
50 | * |
||
51 | * @access public |
||
52 | * @param string $indent |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getHtml(string $indent) |
||
61 | } |
||
62 | } |