Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
AttributeVoid | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
render | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace pvc\html\attribute; |
4 | |
5 | class AttributeVoid extends Attribute |
6 | { |
7 | |
8 | /** |
9 | * render |
10 | * @return string |
11 | */ |
12 | public function render(): string |
13 | { |
14 | return $this->getName(); |
15 | } |
16 | } |