Skip to content

Commit 19b4017

Browse files
committed
Psalm lint
1 parent 9940386 commit 19b4017

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Repositories/IssuerStateRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class IssuerStateRepository extends AbstractDatabaseRepository
1717
{
18-
final public const TABLE_NAME = 'oidc_vci_issuer_state';
18+
final public const string TABLE_NAME = 'oidc_vci_issuer_state';
1919

2020
public function __construct(
2121
ModuleConfig $moduleConfig,

src/Server/RequestRules/Rules/ClientRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
class ClientRule extends AbstractRule
3636
{
37-
protected const KEY_REQUEST_OBJECT_JTI = 'request_object_jti';
37+
protected const string KEY_REQUEST_OBJECT_JTI = 'request_object_jti';
3838

3939
public function __construct(
4040
RequestParamsResolver $requestParamsResolver,

src/Utils/AuthenticatedOAuth2ClientResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class AuthenticatedOAuth2ClientResolver
2424
{
25-
protected const KEY_CLIENT_ASSERTION_JTI = 'client_assertion_jti';
25+
protected const string KEY_CLIENT_ASSERTION_JTI = 'client_assertion_jti';
2626

2727
public function __construct(
2828
protected readonly ClientRepository $clientRepository,

0 commit comments

Comments
 (0)