| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class Utility |
||
| 11 | { |
||
| 12 | 1 | public static function sanitizeRichText(string $string): string |
|
| 13 | { |
||
| 14 | 1 | $sanitized = strip_tags($string, ['ul', 'ol', 'li', 'p', 'br', 'sup', 'sub', 'a', 'strong', 'em']); |
|
| 15 | |||
| 16 | 1 | return $sanitized; |
|
| 17 | } |
||
| 18 | |||
| 19 | 15 | public static function getFormattedBalance(HasBalanceInterface $hasBalance): string |
|
| 24 | } |
||
| 25 | } |
||
| 26 |