PHP 클래스 Webmozart\KeyValueStore\Decorator\AbstractDecorator

It is used by decorators that need to override only a few specific methods (such as SortableDecorator or CountableDecorator).
부터: 1.0
저자: Bernhard Schussek ([email protected])
저자: Titouan Galopin ([email protected])
상속: implements Webmozart\KeyValueStore\Api\KeyValueStore
파일 보기 프로젝트 열기: webmozart/key-value-store 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$store Webmozart\KeyValueStore\Api\KeyValueStore

공개 메소드들

메소드 설명
__construct ( Webmozart\KeyValueStore\Api\KeyValueStore $store ) Creates the store.
clear ( )
exists ( $key )
get ( $key, $default = null )
getMultiple ( array $keys, $default = null )
getMultipleOrFail ( array $keys )
getOrFail ( $key )
keys ( )
remove ( $key )
set ( $key, $value )

메소드 상세

__construct() 공개 메소드

Creates the store.
public __construct ( Webmozart\KeyValueStore\Api\KeyValueStore $store )
$store Webmozart\KeyValueStore\Api\KeyValueStore The store to sort.

clear() 공개 메소드

public clear ( )

exists() 공개 메소드

public exists ( $key )

get() 공개 메소드

public get ( $key, $default = null )

getMultiple() 공개 메소드

public getMultiple ( array $keys, $default = null )
$keys array

getMultipleOrFail() 공개 메소드

public getMultipleOrFail ( array $keys )
$keys array

getOrFail() 공개 메소드

public getOrFail ( $key )

keys() 공개 메소드

public keys ( )

remove() 공개 메소드

public remove ( $key )

set() 공개 메소드

public set ( $key, $value )

프로퍼티 상세

$store 보호되어 있는 프로퍼티

protected KeyValueStore,Webmozart\KeyValueStore\Api $store
리턴 Webmozart\KeyValueStore\Api\KeyValueStore