@@ -1384,7 +1384,7 @@ public function testDynamicWhereAll()
13841384 $ this ->assertEquals ([100 , 200 , 100 , 200 ], $ builder ->getBindings ());
13851385
13861386 $ builder = $ this ->getBuilder ();
1387- $ builder ->select ('* ' )->from ('products ' )->where ('name ' , 'like ' , '%shirt% ' )->orWhereAllNotBetween (['price ' , 'discounted_price ' ], [100 , 200 ]);
1387+ $ builder ->select ('* ' )->from ('products ' )->where ('name ' , 'like ' , '%shirt% ' )->orWhereAllNotBetween (['price ' , 'discounted_price ' ], [100 , 200 ]);
13881388 $ this ->assertSame ('select * from "products" where "name" like ? or ("price" not between ? and ? and "discounted_price" not between ? and ?) ' , $ builder ->toSql ());
13891389 $ this ->assertEquals (['%shirt% ' , 100 , 200 , 100 , 200 ], $ builder ->getBindings ());
13901390
@@ -1425,7 +1425,6 @@ public function testBuilderThrowsExpectedExceptionWithUndefinedWhereAllMethod()
14251425
14261426 $ builder = $ this ->getBuilder ();
14271427 $ builder ->select ('* ' )->from ('users ' )->where ('name ' , 'John ' )->orWhereAllHelloWorld (['id ' ]);
1428-
14291428 }
14301429
14311430 public function testDynamicWhereAny ()
@@ -1474,7 +1473,7 @@ public function testDynamicWhereNone()
14741473 $ builder = $ this ->getBuilder ();
14751474 $ builder ->select ('* ' )->from ('users ' )->where ('name ' , 'John ' )->orWhereNoneIn (['id ' , 'parent_id ' ], [1 , 2 , 3 ]);
14761475 $ this ->assertSame ('select * from "users" where "name" = ? or not ("id" in (?, ?, ?) or "parent_id" in (?, ?, ?)) ' , $ builder ->toSql ());
1477- $ this ->assertEquals (['John ' , 1 ,2 , 3 , 1 , 2 , 3 ], $ builder ->getBindings ());
1476+ $ this ->assertEquals (['John ' , 1 , 2 , 3 , 1 , 2 , 3 ], $ builder ->getBindings ());
14781477
14791478 $ builder = $ this ->getBuilder ();
14801479 $ builder ->select ('* ' )->from ('users ' )->where ('name ' , 'John ' )->orWhereNoneNull (['last_name ' , 'email ' ]);
0 commit comments