Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
RawContents | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\HtmlBuilders\Components\Dashboard; |
3 | |
4 | use Apie\HtmlBuilders\Components\BaseComponent; |
5 | |
6 | class RawContents extends BaseComponent |
7 | { |
8 | public function __construct(string $html) |
9 | { |
10 | parent::__construct(['html' => $html]); |
11 | } |
12 | } |