Commit a4ca8060 by Taylor Otwell

removed spaces and br function from html class.

parent c3f418b1
...@@ -150,28 +150,6 @@ class HTML { ...@@ -150,28 +150,6 @@ class HTML {
} }
/** /**
* Generate HTML breaks.
*
* @param int $count
* @return string
*/
public static function breaks($count = 1)
{
return str_repeat('<br>', $count);
}
/**
* Generate non-breaking spaces.
*
* @param int $count
* @return string
*/
public static function spaces($count = 1)
{
return str_repeat('&nbsp;', $count);
}
/**
* Generate an ordered list. * Generate an ordered list.
* *
* @param array $list * @param array $list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment