max = $max; } public function execute(array $data) { if ($this->isFieldNotEmpty($data)) { $length = mb_strlen($data[$this->field], 'UTF-8'); return $length <= $this->max; } return true; } }