lithium\tests\mocks\template\MockHelper::__get PHP 메소드

__get() 공개 메소드

Hack to expose protected properties for testing.
public __get ( string $property ) : mixed
$property string
리턴 mixed
    public function __get($property)
    {
        return isset($this->{$property}) ? $this->{$property} : null;
    }