ExcludeValue.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license GPL-2.0-or-later |
| 4 | * |
| 5 | * Modified by impress-org on 21-October-2023 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | declare(strict_types=1); |
| 10 | |
| 11 | namespace Give\Vendors\StellarWP\Validation\Commands; |
| 12 | |
| 13 | /** |
| 14 | * Returning this value from the __invoke method of a ValidationRule will stop all validation rules and exclude the |
| 15 | * value from the validated dataset. |
| 16 | * |
| 17 | * @since 1.2.0 |
| 18 | */ |
| 19 | class ExcludeValue |
| 20 | { |
| 21 | |
| 22 | } |
| 23 |