Removing deprecated FormField::Name(), use getName() instead

This commit is contained in:
Sean Harvey 2012-11-15 11:57:38 +13:00
parent c99ed7dc2b
commit 0d659a5e5a

View File

@ -159,14 +159,6 @@ class FormField extends RequestHandler {
return $this->name;
}
/**
* @deprecated 3.0 Use {@link getName()}.
*/
public function Name() {
Deprecation::notice('3.0', 'Use getName() instead.');
return $this->getName();
}
/**
* Returns the field message, used by form validation.
* Use {@link setError()} to set this property.