Skip to content

Commit bb4c936

Browse files
driesvintsgithub-actions[bot]
authored andcommittedMar 12, 2025
Fix code styling
1 parent ebe95d5 commit bb4c936

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
 

‎app/Models/User.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ public function scopeMostSolutions(Builder $query, ?int $inLastDays = null)
320320

321321
return $query;
322322
}])
323-
->having('solutions_count', '>', 0)
324-
->orderBy('solutions_count', 'desc');
323+
->having('solutions_count', '>', 0)
324+
->orderBy('solutions_count', 'desc');
325325
}
326326

327327
public function scopeMostSubmissions(Builder $query, ?int $inLastDays = null)

‎tests/Integration/Models/UserTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@
104104
->and($topMembers->pluck('id'))->not->toContain($userWithoutSolution->id);
105105
})->group('widget');
106106

107-
108107
// Helpers
109108
function createTwoSolutionReplies(User $user)
110109
{

0 commit comments

Comments
 (0)
Please sign in to comment.