Skip to content

Commit 447c788

Browse files
committed
feat: Add array as return type of ClaimEntity::jsonSerialize
1 parent 7a9b536 commit 447c788

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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)