@@ -51,7 +51,7 @@ public function test_it_can_add_multiple_wheres(): void
5151 ], $ searchCriteria );
5252 }
5353
54- public function test_it_can_add_orWhere (): void
54+ public function test_it_can_add_or_where (): void
5555 {
5656 $ searchCriteria = SearchCriteria::make ()
5757 ->where ('sku ' , '= ' , '::some-sku:: ' )
@@ -68,7 +68,7 @@ public function test_it_can_add_orWhere(): void
6868 ], $ searchCriteria );
6969 }
7070
71- public function test_it_can_add_multiple_orWhere (): void
71+ public function test_it_can_add_multiple_or_where (): void
7272 {
7373 $ searchCriteria = SearchCriteria::make ()
7474 ->where ('sku ' , '= ' , '::some-sku:: ' )
@@ -97,7 +97,7 @@ public function test_it_can_add_multiple_orWhere(): void
9797 ], $ searchCriteria );
9898 }
9999
100- public function test_it_can_add_whereIn (): void
100+ public function test_it_can_add_where_in (): void
101101 {
102102 $ searchCriteria = SearchCriteria::make ()
103103 ->whereIn ('sku ' , ['::sku_1:: ' , '::sku_2:: ' , '::sku_3:: ' ])
@@ -110,7 +110,7 @@ public function test_it_can_add_whereIn(): void
110110 ], $ searchCriteria );
111111 }
112112
113- public function test_it_can_add_orWhereIn (): void
113+ public function test_it_can_add_or_where_in (): void
114114 {
115115 $ searchCriteria = SearchCriteria::make ()
116116 ->whereIn ('sku ' , ['::sku_1:: ' , '::sku_2:: ' , '::sku_3:: ' ])
@@ -128,7 +128,7 @@ public function test_it_can_add_orWhereIn(): void
128128 ], $ searchCriteria );
129129 }
130130
131- public function test_it_can_add_whereNotIn (): void
131+ public function test_it_can_add_where_not_in (): void
132132 {
133133 $ searchCriteria = SearchCriteria::make ()
134134 ->whereNotIn ('sku ' , ['::sku_1:: ' , '::sku_2:: ' , '::sku_3:: ' ])
@@ -141,7 +141,7 @@ public function test_it_can_add_whereNotIn(): void
141141 ], $ searchCriteria );
142142 }
143143
144- public function test_it_can_add_orWhereNotIn (): void
144+ public function test_it_can_add_or_where_not_in (): void
145145 {
146146 $ searchCriteria = SearchCriteria::make ()
147147 ->whereNotIn ('sku ' , ['::sku_1:: ' , '::sku_2:: ' , '::sku_3:: ' ])
@@ -199,7 +199,7 @@ public function test_it_can_dd(): void
199199 $ searchCriteria ->dd ();
200200 }
201201
202- public function test_it_can_add_whereNull (): void
202+ public function test_it_can_add_where_null (): void
203203 {
204204 $ searchCriteria = SearchCriteria::make ()
205205 ->where ('sku ' , '= ' , '::sku:: ' )
@@ -215,7 +215,7 @@ public function test_it_can_add_whereNull(): void
215215 ], $ searchCriteria );
216216 }
217217
218- public function test_it_can_add_orWhereNull (): void
218+ public function test_it_can_add_or_where_null (): void
219219 {
220220 $ searchCriteria = SearchCriteria::make ()
221221 ->whereNull ('::some_field:: ' )
@@ -230,7 +230,7 @@ public function test_it_can_add_orWhereNull(): void
230230 ], $ searchCriteria );
231231 }
232232
233- public function test_it_can_add_whereNotNull (): void
233+ public function test_it_can_add_where_not_null (): void
234234 {
235235 $ searchCriteria = SearchCriteria::make ()
236236 ->where ('sku ' , '= ' , '::sku:: ' )
@@ -246,7 +246,7 @@ public function test_it_can_add_whereNotNull(): void
246246 ], $ searchCriteria );
247247 }
248248
249- public function test_it_can_add_orWhereNotNull (): void
249+ public function test_it_can_add_or_where_not_null (): void
250250 {
251251 $ searchCriteria = SearchCriteria::make ()
252252 ->whereNotNull ('::some_field:: ' )
@@ -261,7 +261,7 @@ public function test_it_can_add_orWhereNotNull(): void
261261 ], $ searchCriteria );
262262 }
263263
264- public function test_it_can_orderBy (): void
264+ public function test_it_can_order_by (): void
265265 {
266266 $ searchCriteria = SearchCriteria::make ()
267267 ->orderBy ('sku ' )
@@ -273,7 +273,7 @@ public function test_it_can_orderBy(): void
273273 ], $ searchCriteria );
274274 }
275275
276- public function test_it_can_orderByDesc (): void
276+ public function test_it_can_order_by_desc (): void
277277 {
278278 $ searchCriteria = SearchCriteria::make ()
279279 ->orderByDesc ('sku ' )
0 commit comments