MINOR Code formatting in FormField

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@66270 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2008-11-20 00:31:06 +00:00 committed by Sam Minnee
parent b40dbbb2f0
commit c20e69d563

View File

@ -251,13 +251,16 @@ class FormField extends RequestHandler {
* Set the field value.
* Returns $this.
*/
function setValue($value) { $this->value = $value; return $this; }
function setValue($value) {
$this->value = $value; return $this;
}
/**
* Set the field name
*/
function setName($name) { $this->name = $name; }
function setName($name) {
$this->name = $name;
}
/**
* Set the container form.