diff options
Diffstat (limited to 'lib/classes/forms/Form.php')
| -rw-r--r-- | lib/classes/forms/Form.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/classes/forms/Form.php b/lib/classes/forms/Form.php index 0633190..569eb1f 100644 --- a/lib/classes/forms/Form.php +++ b/lib/classes/forms/Form.php @@ -49,6 +49,15 @@ class Form extends Part return $form; } + /** + * Finalized constructor. + * + * @param mixed[] ...$parts + */ + final public function __construct(...$parts) + { + parent::__construct($parts); + } /** * Adds a new Fieldset to the Form object with the SORM object's fields as |
