status = $status; $this->id = $id; } /** * @param mixed[] $json */ public static function createFormArray(array $json): self { array_key_exists('status', $json) || throw InvalidDataException::create( $json, 'The member "status" is required' ); $status = $json['status']; in_array($status, self::getSupportedStatus(), true) || throw InvalidDataException::create($json, sprintf( 'The member "status" is invalid. Supported values are: %s', implode(', ', self::getSupportedStatus()) )); $id = array_key_exists('id', $json) ? Base64UrlSafe::decodeNoPadding($json['id']) : null; return new self($status, $id); } public function getStatus(): string { return $this->status; } public function getId(): ?string { return $this->id; } /** * @return string[] */ private static function getSupportedStatus(): array { return [ self::TOKEN_BINDING_STATUS_PRESENT, self::TOKEN_BINDING_STATUS_SUPPORTED, self::TOKEN_BINDING_STATUS_NOT_SUPPORTED, ]; } }