SkipValidationRules.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license GPL-2.0-or-later |
| 4 | * |
| 5 | * Modified by impress-org on 23-January-2024 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 command from ValidationRule::__invoke() tells the Validator to skip all subsequent rules. |
| 15 | * |
| 16 | * @since 1.1.0 |
| 17 | */ |
| 18 | class SkipValidationRules |
| 19 | { |
| 20 | } |
| 21 |