Ouzo\Utilities\Optional::_get PHP Method

_get() private method

private _get ( )
    private function _get()
    {
        if ($this->isPresent()) {
            return $this->object;
        }
        throw new Exception('Optional value is null');
    }