Skip to content

Commit 6c072c7

Browse files
Merge pull request #125 from alexandre-daubois/trailing-comma-fix
Remove trailing comma not compatible with PHP 7.1
2 parents 097785e + d434642 commit 6c072c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Hub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
TokenProviderInterface $jwtProvider,
3838
?TokenFactoryInterface $jwtFactory = null,
3939
?string $publicUrl = null,
40-
?HttpClientInterface $httpClient = null,
40+
?HttpClientInterface $httpClient = null
4141
) {
4242
$this->url = $url;
4343
$this->jwtProvider = $jwtProvider;

src/MockHub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(
3232
TokenProviderInterface $jwtProvider,
3333
callable $publisher,
3434
?TokenFactoryInterface $jwtFactory = null,
35-
?string $publicUrl = null,
35+
?string $publicUrl = null
3636
) {
3737
$this->url = $url;
3838
$this->jwtProvider = $jwtProvider;

0 commit comments

Comments
 (0)