'required|string|max_length[9]', ]; public function optionsForType(string $type): array { return $this->select('id, name, description, grade_min, grade_max') ->where('type', $type) ->orderBy('name', 'ASC') ->findAll(); // returnType already 'array' } }