Ouzo\Utilities\Optional::__get PHP Method

__get() public method

public __get ( $field )
    public function __get($field)
    {
        if (!$this->isPresent() || !property_exists($this->object, $field)) {
            return Optional::absent();
        }
        return Optional::fromNullable($this->object->{$field});
    }