mirror of
https://github.com/code-rhapsodie/oauth2-apple.git
synced 2026-03-24 21:02:08 +01:00
Compare commits
2 Commits
update-cod
...
0.5.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e8bd6365bf | ||
|
|
9f99c0dadf |
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user