We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c5b83 commit 6919414Copy full SHA for 6919414
src/Common/FacturaeSigner.php
@@ -176,7 +176,7 @@ public function sign($xml) {
176
$certData = openssl_x509_parse($this->publicChain[0]);
177
$certIssuer = [];
178
foreach ($certData['issuer'] as $item=>$rawValues) {
179
- if (!isset(self::ALLOWED_OID_TYPES[$item])) {
+ if (!array_key_exists($item, self::ALLOWED_OID_TYPES)) {
180
continue;
181
}
182
$item = self::ALLOWED_OID_TYPES[$item];
0 commit comments