@@ -231,21 +231,19 @@ public function cancelPurchase(): bool
231231 * Suggest domain names based on search query
232232 *
233233 * This method uses OpenSRS's name suggestion API with multiple services:
234- * - ' suggestion' : Returns algorithmically generated domain suggestions
235- * - ' premium' : Returns premium domain names available for purchase at higher prices
236- * - ' lookup' : Performs availability checks on exact matches and variations
234+ * - ` suggestion` : Returns algorithmically generated domain suggestions
235+ * - ` premium` : Returns premium domain names available for purchase at higher prices
236+ * - ` lookup` : Performs availability checks on exact matches and variations
237237 *
238238 * @param array|string $query Search terms to generate suggestions from
239239 * @param array $tlds Top-level domains to search within (e.g., ['com', 'net', 'org'])
240- * @param int $minLength Minimum length for suggested domains (default: 1)
241- * @param int $maxLength Maximum length for suggested domains (default: 100)
242240 * @return array Associative array with domain names as keys and metadata as values
243241 * Each domain entry contains:
244- * - ' available' : boolean indicating if domain is available
245- * - ' price' : float|null price for premium domains, null for regular suggestions
246- * - ' type' : string either ' suggestion' or ' premium' indicating the source service
242+ * - ` available` : boolean indicating if domain is available
243+ * - ` price` : float|null price for premium domains, null for regular suggestions
244+ * - ` type` : string either ` suggestion` or ` premium` indicating the source service
247245 */
248- public function suggest (array |string $ query , array $ tlds = [], $ minLength = 1 , $ maxLength = 100 ): array
246+ public function suggest (array |string $ query , array $ tlds = []): array
249247 {
250248 $ query = is_array ($ query ) ? $ query : [$ query ];
251249
0 commit comments