Browse Source

removed span method from html class.

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

+ 0 - 12
system/html.php

@@ -35,18 +35,6 @@ class HTML {
 		return '<link href="'.static::entities(URL::to_asset($url)).'" rel="stylesheet" type="text/css" media="'.$media.'">'.PHP_EOL;
 	}
 
-	/**
-	 * Generate an HTML span tag.
-	 *
-	 * @param  string  $value
-	 * @param  array   $attributes
-	 * @return string
-	 */
-	public static function span($value, $attributes = array())
-	{
-		return '<span'.static::attributes($attributes).'>'.static::entities($value).'</span>';
-	}
-
 	/**
 	 * Generate a HTML link.
 	 *