2 Commits

Author SHA1 Message Date
loic
e8bd6365bf update CHANGELOG.md 2026-02-25 14:15:35 +01:00
AUDUL
9f99c0dadf 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
2026-02-25 14:12:03 +01:00
2 changed files with 10 additions and 2 deletions

View File

@@ -18,6 +18,14 @@ All Notable changes to `oauth2-apple` will be documented in this file
### Security
- Nothing
## 0.5.0 - 2026-02-25
### Fixed
- Updated code base to php 8
### Removed
- lcobucci/jwt library
## 0.4.0 - 2026-02-19
### Added

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;
}