ZF\Apigility\Admin\Model\RpcServiceEntity::__get PHP Method

__get() public method

public __get ( $name )
    public function __get($name)
    {
        if (!isset($this->{$name})) {
            throw new \OutOfRangeException(sprintf('%s does not contain a property by the name of "%s"', __CLASS__, $name));
        }
        return $this->{$name};
    }