arguments[] = 'FUZZY'; return $this; } /** * Limits the results to a maximum of num (default: 5). * * @param int $num * @return $this */ public function max(int $num): self { array_push($this->arguments, 'MAX', $num); return $this; } }