1 | <?php |
||
2 | declare(strict_types=1); |
||
3 | |||
4 | namespace InputGuard\Guards; |
||
5 | |||
6 | interface Success |
||
7 | { |
||
8 | /** |
||
9 | * Validate the inputs for success. |
||
10 | * |
||
11 | * @return bool |
||
12 | */ |
||
13 | public function success(): bool; |
||
0 ignored issues
–
show
Coding Style
Best Practice
introduced
by
![]() |
|||
14 | } |
||
15 |