diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2021-11-12 20:50:36 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2021-11-12 20:50:36 +0000 |
| commit | b8ee7f12aba7a81fa0ffbc5cae68e576a2a2372b (patch) | |
| tree | 81d717716d1b4c68fc9e112a80056bc6b0596905 /src/DTS/Validator.php | |
| parent | cb303f1d018af9fe10f05b271d9d792ab8720a4d (diff) | |
Increase max length of tag
Diffstat (limited to 'src/DTS/Validator.php')
| -rw-r--r-- | src/DTS/Validator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DTS/Validator.php b/src/DTS/Validator.php index 081aae8..a688832 100644 --- a/src/DTS/Validator.php +++ b/src/DTS/Validator.php @@ -23,7 +23,7 @@ class Validator $this->validateTitle($request['title'], 2, 256); - $this->validateTag($request['tag'], 2, 8); + $this->validateTag($request['tag'], 2, 16); } private function validateUrl(string $url, int $minLength, int $maxLength): void |
