MINOR Changed inline documentation to be correct

This commit is contained in:
Stig Lindqvist 2011-09-28 12:28:52 +13:00
parent 85cdb3771c
commit 7d90aa3c10
1 changed files with 7 additions and 7 deletions

View File

@ -13,14 +13,14 @@ class Datagrid extends FormField {
protected $datasource = null;
/**
* Create a new field.
* @param name The internal field name, passed to forms.
* @param title The field label.
* @param value The value of the field.
* @param form Reference to the container form
* @param maxLength The Maximum length of the attribute
* Creates a new datagrid field
*
* @param string $name
* @param string $title
* @param SS_list $source
* @param Form $form
*/
function __construct($name, $title = null, SS_list $source = null, $form = null) {
function __construct($name, $title = null, SS_list $source = null, Form $form = null) {
parent::__construct($name, $title, null, $form);
}