App\Libraries\Utils::toClassCase PHP Method

toClassCase() public static method

public static toClassCase ( $string )
    public static function toClassCase($string)
    {
        return str_replace(' ', '', ucwords(str_replace('_', ' ', $string)));
    }