AcmePhp\Ssl\ParsedKey::getDetail PHP Method

getDetail() public method

public getDetail ( string $name ) : mixed
$name string
return mixed
    public function getDetail($name)
    {
        Assert::oneOf($name, array_keys($this->details), 'ParsedKey::getDetail() expected one of: %2$s. Got: %s');
        return $this->details[$name];
    }