Skip to main content

spatie/dashboard.spatie.be

1956 stars
1 code files
View spatie/dashboard.spatie.be on GitHub

app/Services/GitHub/GitHubApi.php

Open in GitHub
class GitHubApi
{
public function fetchPublicRepositories(string $userName): Collection
{
$repos = $this->fetchAllResults('organization', 'repositories', [$userName]);
 
return collect($repos)->filter(function ($repo) {
return $repo['private'] === false;
});
}
//
}