Browse Source

removed spaces and br function from html class.

Taylor Otwell 13 years ago
parent
commit
a4ca806081
1 changed files with 0 additions and 22 deletions
  1. 0 22
      system/html.php

+ 0 - 22
system/html.php

@@ -149,28 +149,6 @@ class HTML {
 		return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
 	}
 
-	/**
-	 * 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.
 	 *