| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\Framework\FieldsAPI; |
| 4 |
|
| 5 |
|
| 6 |
/** |
| 7 |
* Security challenge fields are a special snowflake. |
| 8 |
* They can typically only be validated once on the server. |
| 9 |
* Extending this abstract field will ensure that the field is not validated on the server |
| 10 |
* before the form is fully submitted, avoiding pre-validation conflicting endpoints. |
| 11 |
* |
| 12 |
* @since 4.1.0 |
| 13 |
*/ |
| 14 |
abstract class SecurityChallenge extends Field |
| 15 |
{ |
| 16 |
} |
| 17 |
|