Skip to content

Commit 40449d8

Browse files
Merge pull request #11 from utopia-php/fix-8.2-deprecations
Fix 8.2 string deprecations
2 parents d161d11 + 0ac6bab commit 40449d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/VCS/Adapter/Git/GitHub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function searchRepositories(string $owner, int $page, int $per_page, stri
104104
$url = '/search/repositories';
105105

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

0 commit comments

Comments
 (0)