PATCH: fix param in docblock ... add \ to FormField::__construct

This commit is contained in:
Nicolaas 2021-04-05 19:43:41 +12:00 committed by GitHub
parent 5872dce76d
commit b75860b195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -332,7 +332,7 @@ class FormField extends RequestHandler
* Creates a new field.
*
* @param string $name The internal field name, passed to forms.
* @param null|string|SilverStripe\View\ViewableData $title The human-readable field label.
* @param null|string|\SilverStripe\View\ViewableData $title The human-readable field label.
* @param mixed $value The value of the field.
*/
public function __construct($name, $title = null, $value = null)