summaryrefslogtreecommitdiff
path: root/src/DTS/Validator.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/DTS/Validator.php')
-rw-r--r--src/DTS/Validator.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/DTS/Validator.php b/src/DTS/Validator.php
index a688832..b4c85f7 100644
--- a/src/DTS/Validator.php
+++ b/src/DTS/Validator.php
@@ -47,10 +47,6 @@ class Validator
{
$title = trim($title);
- if ($title === '') {
- return;
- }
-
if (strlen($title) < $minLength || strlen($title) > $maxLength) {
$this->errors->add('title', "Must be between $minLength and $maxLength in characters in length");
}