*/ class TagBase { /** * The pattern to match. * @var string */ public static $pattern = ""; /** * The string to replace it with. * @var string */ public static $replace = ""; /** * Parses the bbcode. * @param string $text * @param User $poster * @return string */ public static function parse(string $text, User $poster): string { return preg_replace(static::$pattern, static::$replace, $text); } }