Skip to content

Commit 0013252

Browse files
committed
Update stubs
1 parent e33a7dc commit 0013252

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

stubs/ext/openssl/openssl_csr_new.php

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<?php
22

33
/** @param OpenSSLAsymmetricKey $private_key */
4+
#[\Until('8.2')]
45
function openssl_csr_new(array $distinguished_names, &$private_key, ?array $options = null, ?array $extra_attributes = null): \OpenSSLCertificateSigningRequest|false
56
{
7+
}
8+
/**
9+
* @param OpenSSLAsymmetricKey|null $private_key
10+
*/
11+
#[\Since('8.2')]
12+
function openssl_csr_new(array $distinguished_names, #[\SensitiveParameter] &$private_key, ?array $options = null, ?array $extra_attributes = null): \OpenSSLCertificateSigningRequest|bool
13+
{
614
}

0 commit comments

Comments
 (0)