Skip to content

Commit b283229

Browse files
committed
Fix coding standards
1 parent 7e43c4f commit b283229

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "setup php"
1919
uses: "shivammathur/setup-php@v2"
2020
with:
21-
php-version: "8.4"
21+
php-version: "8.5"
2222
tools: "composer"
2323

2424
- name: "install composer dependencies"

src/Model/AccessToken.php

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

77
use League\Bundle\OAuth2ServerBundle\ValueObject\Scope;
88

9-
class AccessToken implements AccessTokenInterface
9+
class AccessToken implements \Stringable, AccessTokenInterface
1010
{
1111
/**
1212
* @var string

src/Model/AuthorizationCode.php

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

77
use League\Bundle\OAuth2ServerBundle\ValueObject\Scope;
88

9-
class AuthorizationCode implements AuthorizationCodeInterface
9+
class AuthorizationCode implements \Stringable, AuthorizationCodeInterface
1010
{
1111
/**
1212
* @var string

src/Model/RefreshToken.php

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

55
namespace League\Bundle\OAuth2ServerBundle\Model;
66

7-
class RefreshToken implements RefreshTokenInterface
7+
class RefreshToken implements \Stringable, RefreshTokenInterface
88
{
99
private string $identifier;
1010
private \DateTimeInterface $expiry;

src/ValueObject/Grant.php

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

55
namespace League\Bundle\OAuth2ServerBundle\ValueObject;
66

7-
class Grant
7+
class Grant implements \Stringable
88
{
99
/**
1010
* @var non-empty-string

src/ValueObject/RedirectUri.php

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

55
namespace League\Bundle\OAuth2ServerBundle\ValueObject;
66

7-
class RedirectUri
7+
class RedirectUri implements \Stringable
88
{
99
/**
1010
* @var non-empty-string

src/ValueObject/Scope.php

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

55
namespace League\Bundle\OAuth2ServerBundle\ValueObject;
66

7-
class Scope
7+
class Scope implements \Stringable
88
{
99
/**
1010
* @var non-empty-string

0 commit comments

Comments
 (0)