| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\Api\Validator; |
| 4 |
|
| 5 |
class FluentMetaValidator extends Validation |
| 6 |
{ |
| 7 |
public static function rules(): array |
| 8 |
{ |
| 9 |
return [ |
| 10 |
'object_id' => 'integer|min:1', |
| 11 |
'object_type' => 'sanitizeText|maxLength:50', |
| 12 |
//phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key |
| 13 |
'meta_key' => 'sanitizeText|maxLength:192', |
| 14 |
]; |
| 15 |
} |
| 16 |
} |
| 17 |
|
| 18 |
|