PHP 클래스 WPKB\ServiceContainer

상속: implements ArrayAcces\ArrayAccess
파일 보기 프로젝트 열기: ibericode/wp-knowledge-base 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$resolved_services array
$services array

공개 메소드들

메소드 설명
get ( $name ) : mixed
has ( $name ) : boolean
offsetExists ( mixed $offset ) : boolean (PHP 5 >= 5.0.0)
Whether a offset exists
offsetGet ( mixed $offset ) : mixed (PHP 5 >= 5.0.0)
Offset to retrieve
offsetSet ( mixed $offset, mixed $value ) : void (PHP 5 >= 5.0.0)
Offset to set
offsetUnset ( mixed $offset ) : void (PHP 5 >= 5.0.0)
Offset to unset

메소드 상세

get() 공개 메소드

public get ( $name ) : mixed
$name
리턴 mixed

has() 공개 메소드

public has ( $name ) : boolean
$name
리턴 boolean

offsetExists() 공개 메소드

(PHP 5 >= 5.0.0)
Whether a offset exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed

An offset to check for.

리턴 boolean true on success or false on failure.

The return value will be casted to boolean if non-boolean was returned.

offsetGet() 공개 메소드

(PHP 5 >= 5.0.0)
Offset to retrieve
public offsetGet ( mixed $offset ) : mixed
$offset mixed

The offset to retrieve.

리턴 mixed Can return all value types.

offsetSet() 공개 메소드

(PHP 5 >= 5.0.0)
Offset to set
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed

The offset to assign the value to.

$value mixed

The value to set.

리턴 void

offsetUnset() 공개 메소드

(PHP 5 >= 5.0.0)
Offset to unset
public offsetUnset ( mixed $offset ) : void
$offset mixed

The offset to unset.

리턴 void

프로퍼티 상세

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

protected array $resolved_services
리턴 array

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

protected array $services
리턴 array