diff --git a/forms/Form.php b/forms/Form.php index 0826d2f17..6699dfa56 100644 --- a/forms/Form.php +++ b/forms/Form.php @@ -11,13 +11,13 @@ * can be passed using the URL or get variables. These restrictions are in place so that we can * recreate the form object upon form submission, without the use of a session, which would be too * resource-intensive. - * + * * You will need to create at least one method for processing the submission (through {@link FormAction}). * This method will be passed two parameters: the raw request data, and the form object. * Usually you want to save data into a {@link DataObject} by using {@link saveInto()}. * If you want to process the submitted data in any way, please use {@link getData()} rather than * the raw request data. - * + * *