PHP 인터페이스 Jose\Object\JWTInterface

파일 보기 프로젝트 열기: spomky-labs/jose 0 사용 예제들

공개 메소드들

메소드 설명
getClaim ( string $key ) : mixed | null Returns the value of the payload of the specified key.
getClaims ( ) : array Returns the claims.
getPayload ( ) : mixed Returns the payload of the JWT.
hasClaim ( string $key ) : boolean
hasClaims ( ) : boolean
withPayload ( mixed $payload ) : Jose\Object\JWTInterface

메소드 상세

getClaim() 공개 메소드

Returns the value of the payload of the specified key.
public getClaim ( string $key ) : mixed | null
$key string The key
리턴 mixed | null Payload value

getClaims() 공개 메소드

Returns the claims.
public getClaims ( ) : array
리턴 array Payload value

getPayload() 공개 메소드

Returns the payload of the JWT.
public getPayload ( ) : mixed
리턴 mixed Payload

hasClaim() 공개 메소드

public hasClaim ( string $key ) : boolean
$key string The key
리턴 boolean

hasClaims() 공개 메소드

public hasClaims ( ) : boolean
리턴 boolean

withPayload() 공개 메소드

public withPayload ( mixed $payload ) : Jose\Object\JWTInterface
$payload mixed
리턴 Jose\Object\JWTInterface