give
/
vendor
/
vendor-prefixed
/
stellarwp
/
validation
/
src
/
Contracts
/
ValidatesOnFrontEnd.php
ValidatesOnFrontEnd.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license GPL-2.0-or-later |
| 4 | * |
| 5 | * Modified by impress-org on 27-April-2023 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | declare(strict_types=1); |
| 10 | |
| 11 | namespace Give\Vendors\StellarWP\Validation\Contracts; |
| 12 | |
| 13 | interface ValidatesOnFrontEnd |
| 14 | { |
| 15 | /** |
| 16 | * Serializes the rule option for use on the front-end. |
| 17 | * |
| 18 | * @unreleased |
| 19 | * |
| 20 | * @return int|float|string|bool|array|null |
| 21 | */ |
| 22 | public function serializeOption(); |
| 23 | } |
| 24 |