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

View File

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