1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-01-30 16:51:10 +08:00

27 lines
543 B
PHP

<?php
namespace App\Validators;
use App\Exceptions\BadRequest as BadRequestException;
class ChapterRead extends Validator
{
public function checkContent($content)
{
$value = $this->filter->sanitize($content, ['trim']);
$length = kg_strlen($value);
if ($length < 10) {
throw new BadRequestException('chapter_read.content_too_short');
}
if ($length > 65535) {
throw new BadRequestException('chapter_read.content_too_long');
}
return $value;
}
}