Skip to content

Commit

Permalink
Fix linting violations
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill committed Mar 1, 2022
1 parent ceccc18 commit 3db3562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Packagist/Api/Client.php
Expand Up @@ -128,7 +128,7 @@ public function all(array $filters = array())
{
$url = '/packages/list.json';
if ($filters) {
$url .= '?'.http_build_query($filters);
$url .= '?' . http_build_query($filters);
}

return $this->respond($this->url($url));
Expand Down Expand Up @@ -170,7 +170,7 @@ public function popular($total)
*/
protected function url($route)
{
return $this->packagistUrl.$route;
return $this->packagistUrl . $route;
}

/**
Expand Down

0 comments on commit 3db3562

Please sign in to comment.