Skip to content

Commit 07a7167

Browse files
committedSep 2, 2024·
Update stubs
1 parent 353a7d7 commit 07a7167

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed
 

‎Php8StubsMap.php

+2
Original file line numberDiff line numberDiff line change
@@ -2816,6 +2816,8 @@ public function __construct(int $phpVersionId)
28162816
'mb_rtrim' => 'stubs/ext/mbstring/mb_rtrim.php',
28172817
'mb_trim' => 'stubs/ext/mbstring/mb_trim.php',
28182818
'mb_ucfirst' => 'stubs/ext/mbstring/mb_ucfirst.php',
2819+
'openssl_password_hash' => 'stubs/ext/openssl/openssl_password_hash.php',
2820+
'openssl_password_verify' => 'stubs/ext/openssl/openssl_password_verify.php',
28192821
'pcntl\\qosclass' => 'stubs/ext/pcntl/Pcntl/QosClass.php',
28202822
'pcntl_getcpu' => 'stubs/ext/pcntl/pcntl_getcpu.php',
28212823
'pcntl_getcpuaffinity' => 'stubs/ext/pcntl/pcntl_getcpuaffinity.php',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
#if defined(HAVE_OPENSSL_ARGON2)
4+
#[\Since('8.4')]
5+
function openssl_password_hash(string $algo, #[\SensitiveParameter] string $password, array $options = []): string
6+
{
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
#[\Since('8.4')]
4+
function openssl_password_verify(string $algo, #[\SensitiveParameter] string $password, string $hash): bool
5+
{
6+
}

0 commit comments

Comments
 (0)
Please sign in to comment.