Skip to content

Commit f5b8487

Browse files
author
Manus AI
committed
fix: correct addRegistrationParam array format
1 parent 589af5c commit f5b8487

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/src/Client/OpenIDConnectClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(array $options = [])
2929
parent::__construct(null, null, null, null);
3030

3131
// Set the scope during registration
32-
$this->addRegistrationParam('scope', 'openid webid offline_access');
32+
$this->addRegistrationParam(['scope' => 'openid webid offline_access']);
3333

3434
$this->solid = data_get($options, 'solid');
3535
$this->identity = data_get($options, 'identity');

0 commit comments

Comments
 (0)