Ouzo\Utilities\Optional::_get PHP 메소드

_get() 개인적인 메소드

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