app/Services/IssueService.php
use Illuminate\Support\Collection; class IssueService{ // public function getAll(): Collection { return app(RepoService::class)->reposToCrawl() ->flatMap(fn (array $repo): array => $this->getIssuesForRepo($repo)); } //}