File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -91,40 +91,40 @@ class Query
91
91
/**
92
92
* Cursor After
93
93
*
94
- * @param String $documentId
94
+ * @param string $documentId
95
95
* @return string
96
96
*/
97
- public static function cursorAfter (String $documentId ): string {
97
+ public static function cursorAfter (string $documentId ): string {
98
98
return ' cursorAfter("' . $documentId . ' ")' ;
99
99
}
100
100
101
101
/**
102
102
* Cursor Before
103
103
*
104
- * @param String $documentId
104
+ * @param string $documentId
105
105
* @return string
106
106
*/
107
- public static function cursorBefore (String $documentId ): string {
107
+ public static function cursorBefore (string $documentId ): string {
108
108
return ' cursorBefore("' . $documentId . ' ")' ;
109
109
}
110
110
111
111
/**
112
112
* Order Asc
113
113
*
114
- * @param String $attribute
114
+ * @param string $attribute
115
115
* @return string
116
116
*/
117
- public static function orderAsc (String $attribute ): string {
117
+ public static function orderAsc (string $attribute ): string {
118
118
return ' orderAsc("' . $attribute . ' ")' ;
119
119
}
120
120
121
121
/**
122
122
* Order Desc
123
123
*
124
- * @param String $attribute
124
+ * @param string $attribute
125
125
* @return string
126
126
*/
127
- public static function orderDesc (String $attribute ): string {
127
+ public static function orderDesc (string $attribute ): string {
128
128
return ' orderDesc("' . $attribute . ' ")' ;
129
129
}
130
130
You can’t perform that action at this time.
0 commit comments