Altax\Module\Server\Resource\KeyPassphraseMap::getPassphraseAtKey PHP Method

getPassphraseAtKey() public method

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