Scalr\Modules\Platforms\OrphanedServer::offsetGet PHP Method

offsetGet() public method

See also: ArrayAccess::offsetGet()
public offsetGet ( $property )
    public function offsetGet($property)
    {
        if (property_exists($this, $property)) {
            return $this->{$property};
        } else {
            throw new \RuntimeException("Property '{$property}' doesn't exist!");
        }
        return null;
    }