mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Missing ; in example
This commit is contained in:
parent
ffcbeb5812
commit
91bdb5b530
@ -45,7 +45,7 @@ In practice, this looks like:
|
|||||||
FormAction::create("doSayHello")->setTitle("Say hello")
|
FormAction::create("doSayHello")->setTitle("Say hello")
|
||||||
);
|
);
|
||||||
|
|
||||||
$required = new RequiredFields('Name')
|
$required = new RequiredFields('Name');
|
||||||
|
|
||||||
$form = new Form($this, 'HelloForm', $fields, $actions, $required);
|
$form = new Form($this, 'HelloForm', $fields, $actions, $required);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user