Skip to content

Commit 5f2ce90

Browse files
committed
Fix return type in stub
1 parent 6703b73 commit 5f2ce90

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ext/openssl/openssl.stub.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,4 +700,8 @@ function openssl_password_hash(string $algo, #[\SensitiveParameter] string $pass
700700
function openssl_password_verify(string $algo, #[\SensitiveParameter] string $password, string $hash): bool {}
701701
#endif
702702

703-
function openssl_oid_lookup(string $txt): array {}
703+
/**
704+
* @return array<string, string>|false
705+
* @refcount 1
706+
*/
707+
function openssl_oid_lookup(string $txt): array|false {}

ext/openssl/openssl_arginfo.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)