1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
2020-04-03 19:20:46 +08:00

28 lines
544 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;
}
}