| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Module\User\Validator;
- /**
- *
- */
- class LoginJizhi extends \App\Module\Sys\Validator\ContinuousTimes
- {
- protected static $diff = 12 * 3600;
- public function validate(mixed $value, array $data): bool
- {
- $this->type = static::class;
- $this->sid = $value;
- return $this->checkValidate();
- }
- }
|