Skip to content

Commit

Permalink
Merge pull request #38 from eideasy/eidx-update-passport-version-to-12
Browse files Browse the repository at this point in the history
feat: update laravel passport to 12
  • Loading branch information
arietimmerman committed Aug 20, 2024
2 parents b248625 + 447c788 commit 2983435
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"illuminate/support": "^10.0|^11.0",
"illuminate/auth": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"laravel/passport": "^10.0|^11.0"
"laravel/passport": "^10.0|^11.0|^12"
},
"require-dev": {
"mockery/mockery": "^1.0",
Expand Down
3 changes: 1 addition & 2 deletions src/Bridge/ClaimEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class ClaimEntity implements ClaimEntityInterface
{

protected $identifier;
protected $type;
protected $essential;
Expand Down Expand Up @@ -45,7 +44,7 @@ public function getEssential()
return $this->essential;
}

public function jsonSerialize()
public function jsonSerialize(): array
{
return [
'identifier' => $this->getIdentifier(),
Expand Down

0 comments on commit 2983435

Please sign in to comment.