lithium\tests\mocks\template\MockHelper::__get PHP Method

__get() public method

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