@@ -29,51 +29,51 @@ class Query
29
29
}
30
30
31
31
/**
32
- * Lesser
32
+ * Less Than
33
33
*
34
34
* @param string $attribute
35
35
* @param mixed $value
36
36
* @return string
37
37
*/
38
- public static function lesser (string $attribute , $value ): string
38
+ public static function lessThan (string $attribute , $value ): string
39
39
{
40
- return self :: addQuery($attribute , ' lesser ' , $value );
40
+ return self :: addQuery($attribute , ' lessThan ' , $value );
41
41
}
42
42
43
43
/**
44
- * Lesser or Equal
44
+ * Lesser Than or Equal
45
45
*
46
46
* @param string $attribute
47
47
* @param mixed $value
48
48
* @return string
49
49
*/
50
- public static function lesserEqual (string $attribute , $value ): string
50
+ public static function lessThanEqual (string $attribute , $value ): string
51
51
{
52
- return self :: addQuery($attribute , ' lesserEqual ' , $value );
52
+ return self :: addQuery($attribute , ' lessThanEqual ' , $value );
53
53
}
54
54
55
55
/**
56
- * Greater
56
+ * Greater Than
57
57
*
58
58
* @param string $attribute
59
59
* @param mixed $value
60
60
* @return string
61
61
*/
62
- public static function greater (string $attribute , $value ): string
62
+ public static function greaterThan (string $attribute , $value ): string
63
63
{
64
- return self :: addQuery($attribute , ' greater ' , $value );
64
+ return self :: addQuery($attribute , ' greaterThan ' , $value );
65
65
}
66
66
67
67
/**
68
- * Greater or Equal
68
+ * Greater Than or Equal
69
69
*
70
70
* @param string $attribute
71
71
* @param mixed $value
72
72
* @return string
73
73
*/
74
- public static function greaterEqual (string $attribute , $value ): string
74
+ public static function greaterThanEqual (string $attribute , $value ): string
75
75
{
76
- return self :: addQuery($attribute , ' greaterEqual ' , $value );
76
+ return self :: addQuery($attribute , ' greaterThanEqual ' , $value );
77
77
}
78
78
79
79
/**
0 commit comments