Update code php8 (#5)

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* update code to php 8

remove lcobucci/jwt

* fix private email
This commit is contained in:
AUDUL
2026-02-25 14:12:03 +01:00
committed by GitHub
parent f4ee42b17c
commit 9f99c0dadf

View File

@@ -12,7 +12,7 @@ class AppleAccessToken extends AccessToken
protected string $email;
protected bool $isPrivateEmail;
protected ?bool $isPrivateEmail = null;
/**
* @param Key[] $keys Valid Apple JWT keys
@@ -85,7 +85,7 @@ class AppleAccessToken extends AccessToken
return $this->email;
}
public function isPrivateEmail(): bool
public function isPrivateEmail(): ?bool
{
return $this->isPrivateEmail;
}