We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, when looking for builds by branch you can get no results when there are indeed builds beyond the "first page" of API results...
$client->fetchRepository($repo); $client->getBuilds()->findBy(array('branch' => $branch)); $build = $builds->first();
This would allow setting an optional page limit when populating repository data...
public function fetchRepository($slug, $pageLimit = 1)
This would make it a property of the client...
private $pageLimit = 1; public function setPageLimit($limit) { $this->pageLimit = $limit; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem:
For example, when looking for builds by branch you can get no results when there are indeed builds beyond the "first page" of API results...
Recommendations:
This would allow setting an optional page limit when populating repository data...
This would make it a property of the client...
The text was updated successfully, but these errors were encountered: