Skip to content

Commit

Permalink
Merge pull request #11 from utopia-php/fix-8.2-deprecations
Browse files Browse the repository at this point in the history
Fix 8.2 string deprecations
  • Loading branch information
TorstenDittmann committed Nov 8, 2023
2 parents d161d11 + 0ac6bab commit 40449d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VCS/Adapter/Git/GitHub.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function searchRepositories(string $owner, int $page, int $per_page, stri
$url = '/search/repositories';

$response = $this->call(self::METHOD_GET, $url, ['Authorization' => "Bearer $this->accessToken"], [
'q' => "${search} user:${owner} fork:true",
'q' => "{$search} user:{$owner} fork:true",
'per_page' => $per_page,
'sort' => 'updated'
]);
Expand Down

0 comments on commit 40449d8

Please sign in to comment.