Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
19 / 19 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| GlobalAttributes | |
100.00% |
19 / 19 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| attributeNames | |
100.00% |
19 / 19 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace pvc\html\attribute; |
| 4 | |
| 5 | class GlobalAttributes |
| 6 | { |
| 7 | /** |
| 8 | * @return array<string> |
| 9 | */ |
| 10 | public static function attributeNames(): array |
| 11 | { |
| 12 | return [ |
| 13 | 'accesskey', |
| 14 | 'class', |
| 15 | 'contenteditable', |
| 16 | 'dir', |
| 17 | 'draggable', |
| 18 | 'enterkeyhint', |
| 19 | 'hidden', |
| 20 | 'id', |
| 21 | 'inert', |
| 22 | 'inputmode', |
| 23 | 'lang', |
| 24 | 'popover', |
| 25 | 'spellcheck', |
| 26 | 'style', |
| 27 | 'tabindex', |
| 28 | 'title', |
| 29 | 'translate' |
| 30 | ]; |
| 31 | } |
| 32 | } |