Jose\Object\JWKSets::getKeys PHP Method

getKeys() public method

public getKeys ( )
    public function getKeys()
    {
        $keys = [];
        foreach ($this->jwksets as $jwkset) {
            $keys = array_merge($keys, $jwkset->getKeys());
        }
        return $keys;
    }