1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

adapt bcdiv for PHP8 in stubs (#5401)

This commit is contained in:
orklah 2021-03-16 18:45:54 +01:00 committed by GitHub
parent ff5a6cb297
commit 1149050817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -952,7 +952,7 @@ function realpath(string $path) {}
*
* @param numeric-string $left_operand
* @param numeric-string $right_operand
* @return ($right_operand is "0" ? null : numeric-string)
* @return (PHP_MAJOR_VERSION is 8 ? numeric-string : ($right_operand is "0" ? null : numeric-string))
*/
function bcdiv(string $left_operand, string $right_operand, int $scale = 0): ?string {}