Skip to content

Commit

Permalink
fixed: Opening parenthesis of a multi-line function call must be the …
Browse files Browse the repository at this point in the history
…last content on the line #49
  • Loading branch information
VitalyEvrica committed Mar 12, 2024
1 parent 406201f commit a1e52c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Feature/NPlusOneQueriesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ public function canPreloadRolesOnCollection(): void
->each(function (User $user) use ($roleIds) {
$user->roles()->attach($roleIds);
});
$this->assertEquals($this->usersCount,
User::count() - $this->usersCountCorrection);
$this->assertEquals($this->usersCount, User::count() - $this->usersCountCorrection);

$this->queries = 0;

Expand Down

0 comments on commit a1e52c3

Please sign in to comment.