Skip to content

Commit a78e9fb

Browse files
committed
cs-fix
1 parent 220f55c commit a78e9fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

system/Validation/Validation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ public function run(?array $data = null, ?string $group = null, ?string $dbGroup
183183
* Runs the validation process, returning true or false
184184
* determining whether validation was successful or not.
185185
*
186-
* @param object|array|string|int|float|bool|null $value
187-
* @param string[] $errors
186+
* @param array|bool|float|int|object|string|null $value
187+
* @param string[] $errors
188188
*/
189189
public function check($value, string $rule, array $errors = []): bool
190190
{

system/Validation/ValidationInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public function run(?array $data = null, ?string $group = null): bool;
3131
* Check; runs the validation process, returning true or false
3232
* determining whether or not validation was successful.
3333
*
34-
* @param object|array|string|int|float|bool|null $value Value to validate.
35-
* @param string[] $errors
34+
* @param array|bool|float|int|object|string|null $value Value to validate.
35+
* @param string[] $errors
3636
*
3737
* @return bool True if valid, else false.
3838
*/

0 commit comments

Comments
 (0)