| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Html |
||
| 9 | { |
||
| 10 | |||
| 11 | public const OPEN_TAG = '<'; |
||
| 12 | public const END_TAG = '>'; |
||
| 13 | public const VALUE_OPEN_END_TAG = '</'; |
||
| 14 | |||
| 15 | public static function a(string $href, ?string $value = null, array $properties = []): string |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function tag(string $name, ?string $value = null, array|string $properties = []): string |
||
| 37 | } |