ExcludeValue.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Give\Vendors\StellarWP\Validation\Commands; |
| 6 | |
| 7 | /** |
| 8 | * Returning this value from the __invoke method of a ValidationRule will stop all validation rules and exclude the |
| 9 | * value from the validated dataset. |
| 10 | * |
| 11 | * @since 1.2.0 |
| 12 | */ |
| 13 | class ExcludeValue |
| 14 | { |
| 15 | |
| 16 | } |
| 17 |