| 1 | <?php |
||
| 7 | class Payload implements \JsonSerializable |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var PropertyList |
||
| 11 | */ |
||
| 12 | protected $propertyList; |
||
| 13 | |||
| 14 | public function __construct() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Claim\ClaimInterface $claim |
||
| 21 | */ |
||
| 22 | public function setClaim(Claim\ClaimInterface $claim) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $name |
||
| 29 | * @return Claim\ClaimInterface|null |
||
| 30 | */ |
||
| 31 | public function findClaimByName($name) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return PropertyList |
||
| 45 | */ |
||
| 46 | public function getClaims() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function jsonSerialize() |
||
| 58 | } |
||
| 59 |