File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ interface ValidationInterface
2020{
2121 /**
2222 * Runs the validation process, returning true/false determining whether
23- * or not validation was successful.
23+ * validation was successful or not .
2424 *
25- * @param array $data The array of data to validate.
26- * @param string $group The pre-defined group of rules to apply.
25+ * @param array|null $data The array of data to validate.
26+ * @param string|null $group The predefined group of rules to apply.
27+ * @param string|null $dbGroup The database group to use.
2728 */
28- public function run (?array $ data = null , ?string $ group = null ): bool ;
29+ public function run (?array $ data = null , ?string $ group = null , ? string $ dbGroup = null ): bool ;
2930
3031 /**
3132 * Check; runs the validation process, returning true or false
You can’t perform that action at this time.
0 commit comments