name = $name; $this->group = $group; $this->id = $id; } public function validate(): bool { if (iconv_strlen($this->name) > 50 || iconv_strlen($this->name) < 2) { return false; } if (iconv_strlen($this->group) > 50 || iconv_strlen($this->group) < 2) { return false; } return true; } }