PHP 클래스 Themosis\Foundation\DataContainer

상속: implements ArrayAcces\ArrayAccess
파일 보기 프로젝트 열기: themosis/framework

보호된 프로퍼티들

프로퍼티 타입 설명
$properties array Instance properties.

공개 메소드들

메소드 설명
offsetExists ( string $offset ) : boolean Check if a property exists.
offsetGet ( string $offset ) : mixed Property to fetch.
offsetSet ( string $offset, mixed $value ) Set a new property.
offsetUnset ( string $offset ) Property to remove.

메소드 상세

offsetExists() 공개 메소드

Check if a property exists.
public offsetExists ( string $offset ) : boolean
$offset string The property key.
리턴 boolean True on success, false on failure.

offsetGet() 공개 메소드

Property to fetch.
public offsetGet ( string $offset ) : mixed
$offset string The property key.
리턴 mixed

offsetSet() 공개 메소드

Set a new property.
public offsetSet ( string $offset, mixed $value )
$offset string The property key.
$value mixed The property value.

offsetUnset() 공개 메소드

Property to remove.
public offsetUnset ( string $offset )
$offset string The property key.

프로퍼티 상세

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

Instance properties.
protected array $properties
리턴 array