You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Forms/Controls/SubmitButton.php
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,13 @@
19
19
*/
20
20
class SubmitButton extends Button implementsNette\Forms\SubmitterControl
21
21
{
22
-
/** @var callable[]&((callable(Nette\Forms\Form|SubmitButton, array|object): void)|(callable(array|object): void))[]; Occurs when the button is clicked and form is successfully validated */
22
+
/**
23
+
* Occurs when the button is clicked and form is successfully validated
Copy file name to clipboardExpand all lines: src/Forms/Form.php
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -82,16 +82,19 @@ class Form extends Container implements Nette\HtmlStringable
82
82
/** @internal protection token ID */
83
83
publicconstPROTECTOR_ID = '_token_';
84
84
85
-
/** @var callable[]&((callable(Form, array|object): void)|(callable(array|object): void))[]; Occurs when the form is submitted and successfully validated */
85
+
/**
86
+
* Occurs when the form is submitted and successfully validated
0 commit comments