* */ namespace ComboStrap; class NavBarUtility { /** * @param $text * @return string - a text styled for inside a navbar */ public static function text($text) { if (!empty(trim($text))) { return '' . $text . ''; } } }