Commit 59fa681d authored by Taylor Otwell's avatar Taylor Otwell

Fix tabs on Form close method.

parent 80173d48
...@@ -278,16 +278,6 @@ class Form { ...@@ -278,16 +278,6 @@ class Form {
return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL; return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
} }
/**
* Close a HTML form
*
* @return string
*/
public static function close()
{
return '</form>'.PHP_EOL;
}
/** /**
* Create a HTML input element. * Create a HTML input element.
* *
...@@ -306,4 +296,14 @@ class Form { ...@@ -306,4 +296,14 @@ class Form {
return '<input'.HTML::attributes($attributes).' />'.PHP_EOL; return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
} }
/**
* Close a HTML form.
*
* @return void
*/
public static function close()
{
return '</form>'.PHP_EOL;
}
} }
\ No newline at end of file
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