Files
kiri-core/Validator/RequiredValidator.php
T

34 lines
508 B
PHP
Raw Normal View History

2020-08-31 12:38:32 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/3 0003
* Time: 15:47
*/
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 12:38:32 +08:00
namespace validator;
class RequiredValidator extends BaseValidator
{
/**
* @return bool
* 检查是否存在
*/
2020-12-17 14:09:14 +08:00
public function trigger(): bool
2020-08-31 12:38:32 +08:00
{
$param = $this->getParams();
if (is_numeric($param)) {
return true;
}
if (empty($param) || !isset($param[$this->field])) {
return $this->addError('The param :attribute not exists');
} else {
return true;
}
}
}