Merge pull request #990 from resurtm/html-indentation-fix

Tiny indentation fix in html.php.
This commit is contained in:
Dayle Rees 2012-07-27 04:04:01 -07:00
commit 483f5705a9
1 changed files with 7 additions and 7 deletions

View File

@ -9,13 +9,13 @@ class HTML {
*/
public static $macros = array();
/**
* Registers a custom macro.
*
* @param string $name
* @param Closure $input
* @return void
*/
/**
* Registers a custom macro.
*
* @param string $name
* @param Closure $input
* @return void
*/
public static function macro($name, $macro)
{
static::$macros[$name] = $macro;