Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 4ca5120

Browse files
thexpandweierophinney
authored andcommitted
Remove trailing comma from constructor call, causing builds to fail on PHP < 7.3
1 parent 8597adc commit 4ca5120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Repository/Pdo/ClientRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getClientEntity($clientIdentifier) : ?ClientEntityInterface
3232
return new ClientEntity(
3333
$clientIdentifier,
3434
$clientData['name'] ?? '',
35-
$clientData['redirect'] ?? '',
35+
$clientData['redirect'] ?? ''
3636
);
3737
}
3838

0 commit comments

Comments
 (0)