123456789101112131415161718192021222324 |
- <?php
- namespace App\Validators;
- use \Prettus\Validator\Contracts\ValidatorInterface;
- use \Prettus\Validator\LaravelValidator;
- /**
- * Class MessageValidator.
- *
- * @package namespace App\Validators;
- */
- class MessageValidator extends LaravelValidator
- {
- /**
- * Validation Rules
- *
- * @var array
- */
- protected $rules = [
- ValidatorInterface::RULE_CREATE => [],
- ValidatorInterface::RULE_UPDATE => [],
- ];
- }
|