Skip to content

Commit

Permalink
Disable score deleting for now
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jan 3, 2024
1 parent 3431d70 commit afd514c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Jobs/RemoveBeatmapsetSoloScores.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public function handle()

private function deleteScores(Collection $scores): void
{
exit();

Check failure on line 61 in app/Jobs/RemoveBeatmapsetSoloScores.php

View workflow job for this annotation

GitHub Actions / Lint all

Usage of language construct "exit" with parentheses is disallowed.

Check failure on line 61 in app/Jobs/RemoveBeatmapsetSoloScores.php

View workflow job for this annotation

GitHub Actions / Lint all

Usage of language construct "exit" with parentheses is disallowed.

$ids = $scores->pluck('id')->all();

$scoresQuery = Score::whereKey($ids);
Expand Down

0 comments on commit afd514c

Please sign in to comment.