Altax\Module\Server\Resource\KeyPassphraseMap::getPassphraseAtKey PHP 메소드

getPassphraseAtKey() 공개 메소드

public getPassphraseAtKey ( $keyPath )
    public function getPassphraseAtKey($keyPath)
    {
        if (!array_key_exists(realpath($keyPath), $this->map)) {
            return null;
        }
        return $this->map[realpath($keyPath)];
    }