@@ -1038,28 +1038,28 @@ public function orWhereNotTermsExists($column, $options = [])
10381038 *
10391039 * @param string $boolean
10401040 */
1041- public function whereTermFuzzy ($ column , $ value , $ boolean = 'and ' , $ not = false , $ options = []): self
1041+ public function whereFuzzy ($ column , $ value , $ boolean = 'and ' , $ not = false , $ options = []): self
10421042 {
1043- $ type = 'TermFuzzy ' ;
1043+ $ type = 'Fuzzy ' ;
10441044 [$ column , $ value , $ not , $ boolean , $ options ] = $ this ->extractOptionsWithNot ($ type , $ column , $ value , $ boolean , $ not , $ options );
10451045 $ this ->wheres [] = compact ('column ' , 'value ' , 'type ' , 'boolean ' , 'not ' , 'options ' );
10461046
10471047 return $ this ;
10481048 }
10491049
1050- public function orWhereTermFuzzy (string $ column , $ value , array $ options = []): self
1050+ public function orWhereFuzzy (string $ column , $ value , array $ options = []): self
10511051 {
1052- return $ this ->whereTermFuzzy ($ column , $ value , 'or ' , false , $ options );
1052+ return $ this ->whereFuzzy ($ column , $ value , 'or ' , false , $ options );
10531053 }
10541054
1055- public function whereNotTermFuzzy (string $ column , $ value , array $ options = []): self
1055+ public function whereNotFuzzy (string $ column , $ value , array $ options = []): self
10561056 {
1057- return $ this ->whereTermFuzzy ($ column , $ value , 'and ' , true , $ options );
1057+ return $ this ->whereFuzzy ($ column , $ value , 'and ' , true , $ options );
10581058 }
10591059
1060- public function orWhereNotTermFuzzy (string $ column , $ value , array $ options = []): self
1060+ public function orWhereNotFuzzy (string $ column , $ value , array $ options = []): self
10611061 {
1062- return $ this ->whereTermFuzzy ($ column , $ value , 'or ' , true , $ options );
1062+ return $ this ->whereFuzzy ($ column , $ value , 'or ' , true , $ options );
10631063 }
10641064
10651065 /**
0 commit comments