Ouzo\Utilities\Optional::_or PHP Method

_or() private method

private _or ( $alternativeValue )
    private function _or($alternativeValue)
    {
        if ($this->isPresent()) {
            return $this->object;
        }
        return $alternativeValue;
    }