Skip to content

Commit 2983435

Browse files
Merge pull request #38 from eideasy/eidx-update-passport-version-to-12
feat: update laravel passport to 12
2 parents b248625 + 447c788 commit 2983435

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"illuminate/support": "^10.0|^11.0",
4444
"illuminate/auth": "^10.0|^11.0",
4545
"illuminate/database": "^10.0|^11.0",
46-
"laravel/passport": "^10.0|^11.0"
46+
"laravel/passport": "^10.0|^11.0|^12"
4747
},
4848
"require-dev": {
4949
"mockery/mockery": "^1.0",

src/Bridge/ClaimEntity.php

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

77
class ClaimEntity implements ClaimEntityInterface
88
{
9-
109
protected $identifier;
1110
protected $type;
1211
protected $essential;
@@ -45,7 +44,7 @@ public function getEssential()
4544
return $this->essential;
4645
}
4746

48-
public function jsonSerialize()
47+
public function jsonSerialize(): array
4948
{
5049
return [
5150
'identifier' => $this->getIdentifier(),

0 commit comments

Comments
 (0)