Skip to content

Commit

Permalink
Updated Pint and fixed all files
Browse files Browse the repository at this point in the history
  • Loading branch information
troccoli committed Aug 29, 2024
1 parent a4e9e35 commit 2f3fb5e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion database/seeders/FixturesSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function run(): void

/** @var Division $division */
foreach ($divisions as $division) {
$teams = $division->teams->keyBy((new Team())->getKeyName());
$teams = $division->teams->keyBy((new Team)->getKeyName());

$matchDate = Carbon::today()->setYear($division->competition->season->year);
$matchNumber = 1;
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/SeederProgressBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait SeederProgressBar

private function initProgressBar(?int $max = null): void
{
$this->progressBar = new ProgressBar(new ConsoleOutput());
$this->progressBar = new ProgressBar(new ConsoleOutput);
$this->progressBar->setFormat('[%bar%] %percent:3s%%');
$this->progressBar->start($max);
}
Expand Down

0 comments on commit 2f3fb5e

Please sign in to comment.