chore(deps): Dependency update, codestyle fixes

This commit is contained in:
2023-05-10 02:34:54 +03:00
parent 557e906acf
commit 45927b0171
12 changed files with 323 additions and 242 deletions

View File

@@ -46,7 +46,7 @@ class CheckCommand extends Command
$versions = collect($pkg->versions ?? [])
->keys()
// Filter actual versions out.
->filter(fn($version) => \str_starts_with($version, 'dev-'))
->filter(fn ($version) => \str_starts_with($version, 'dev-'))
->sort();
$this->totalBranches = $versions->count();
@@ -59,7 +59,7 @@ class CheckCommand extends Command
);
$statistics = collect($versions)
->mapWithKeys(fn($branch) => $this->getStatistics($branch))
->mapWithKeys(fn ($branch) => $this->getStatistics($branch))
->toArray();
$this->info('Downloaded statistics...');