| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 49 | 80 | public static function element(string $name, array $attributes, ?string $content = null): string |
|
| 50 | { |
||
| 51 | 80 | if ($content === null) { |
|
| 52 | 68 | return '<'.$name.self::attributes($attributes).' />'; |
|
| 53 | } |
||
| 54 | |||
| 55 | 15 | return '<'.$name.self::attributes($attributes).'>'.$content.'</'.$name.'>'; |
|
| 56 | } |
||
| 58 |