Files

27 lines
400 B
PHP
Raw Permalink Normal View History

2022-01-09 14:01:11 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/3 0003
* Time: 15:47
*/
declare(strict_types=1);
namespace validator;
class RequiredValidator extends BaseValidator
{
2023-07-07 17:24:03 +08:00
/**
2023-12-18 15:01:09 +08:00
* @param mixed $value
2023-07-07 17:24:03 +08:00
* @return bool
* 检查是否存在
*/
2023-12-19 14:51:13 +08:00
public function trigger(mixed $value): bool
2023-12-18 15:01:09 +08:00
{
return !is_null($value);
}
2022-01-09 14:01:11 +08:00
}