escaping utility methods

This commit is contained in:
Steffen Schröder
2014-05-09 18:42:17 +02:00
parent 3b47f0fd9a
commit 56108f0605
4 changed files with 35 additions and 3 deletions

View File

@ -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)
*