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...');

View File

@@ -34,9 +34,7 @@ class InspireCommand extends Command
<<<'HTML'
<div class="py-1 ml-2">
<div class="px-1 bg-blue-300 text-black">Laravel Zero</div>
<em class="ml-1">
Simplicity is the ultimate sophistication.
</em>
<em class="ml-1">Simplicity is the ultimate sophistication.</em>
</div>
HTML
);