escaping utility methods
This commit is contained in:
@ -11,6 +11,16 @@ namespace ManiaControl;
|
||||
*/
|
||||
abstract class Formatter {
|
||||
|
||||
/**
|
||||
* Return the given Text with Escaping around it
|
||||
*
|
||||
* @param string $text
|
||||
* @return string
|
||||
*/
|
||||
public static function escapeText($text) {
|
||||
return '$<' . $text . '$>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Format the given Time (in Milliseconds)
|
||||
*
|
||||
|
Reference in New Issue
Block a user