Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
msmakouz committed Apr 3, 2024
1 parent 277baa9 commit ddfb9de
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2519,7 +2519,7 @@ public function testAndWhereNotWithArrayOr(): void
->andWhereNot([
'@or' => [
['id' => ['between' => [10, 100]], 'name' => 'John Doe'],
['status' => 'disabled']
['status' => 'disabled'],
]
]);

Expand All @@ -2538,7 +2538,7 @@ public function testAndWhereNotWithArrayAnd(): void
->andWhereNot([
'@and' => [
['id' => ['between' => [10, 100]], 'name' => 'John Doe'],
['status' => 'disabled']
['status' => 'disabled'],
]
]);

Expand All @@ -2557,7 +2557,7 @@ public function testOrWhereNotWithArrayOr(): void
->orWhereNot([
'@or' => [
['id' => ['between' => [10, 100]], 'name' => 'John Doe'],
['status' => 'disabled']
['status' => 'disabled'],
]
]);

Expand All @@ -2576,7 +2576,7 @@ public function testOrWhereNotWithArrayAnd(): void
->orWhereNot([
'@and' => [
['id' => ['between' => [10, 100]], 'name' => 'John Doe'],
['status' => 'disabled']
['status' => 'disabled'],
]
]);

Expand Down

0 comments on commit ddfb9de

Please sign in to comment.