| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\Api\Validator; |
| 4 |
|
| 5 |
class FluentActivityValidator extends Validation |
| 6 |
{ |
| 7 |
public static function rules(): array |
| 8 |
{ |
| 9 |
return [ |
| 10 |
'status' => 'sanitizeText|maxLength:20', |
| 11 |
'log_type' => 'sanitizeText|maxLength:20', |
| 12 |
'user_id' => 'integer', |
| 13 |
'module_id' => 'integer', |
| 14 |
'title' => 'sanitizeText|maxLength:100', |
| 15 |
'content' => 'sanitizeTextArea', |
| 16 |
'module_type' => 'sanitizeText|maxLength:192', |
| 17 |
'module_name' => 'sanitizeText|maxLength:192', |
| 18 |
]; |
| 19 |
} |
| 20 |
|
| 21 |
} |
| 22 |
|