Skip to content

Commit 042d2b5

Browse files
committed
fix to cs fixer version 2
1 parent 733de06 commit 042d2b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
uses: actions/checkout@v2
3232

3333
- name: PHP-CS-Fixer
34-
uses: docker://oskarstark/php-cs-fixer-ga
34+
uses: docker://oskarstark/php-cs-fixer-ga:2.19.0
3535
with:
3636
args: --dry-run

src/Authentication/QueryParam.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function authenticate(RequestInterface $request)
3838

3939
$params = array_merge($params, $this->params);
4040

41-
$query = http_build_query($params, null, '&');
41+
$query = http_build_query($params, '', '&');
4242

4343
$uri = $uri->withQuery($query);
4444

0 commit comments

Comments
 (0)