| Total Complexity | 3 | 
| Total Lines | 44 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 26 | class Div extends \Kristuff\Phtemail\Core\HtmlContainerElement | ||
| 27 | { | ||
| 28 | /** | ||
| 29 | * Constructor | ||
| 30 | * | ||
| 31 | * @access public | ||
| 32 | * @param array $styles The inline styles | ||
| 33 | */ | ||
| 34 | public function __construct(array $styles = []) | ||
| 45 | // 'font-weight', todo | ||
| 46 | // 'line-height', | ||
| 47 | ); | ||
| 48 | |||
| 49 | } | ||
| 50 | |||
| 51 | /** | ||
| 52 | * Gets the HTML | ||
| 53 | * | ||
| 54 | * @access public | ||
| 55 | * @param string $indent | ||
| 56 | * | ||
| 57 | * @return string The html string content | ||
| 58 | */ | ||
| 59 | public function getHtml(string $indent) | ||
| 72 | } |