1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/uri: Remove bool type coercions in tests (#18921)

This commit is contained in:
Gina Peter Banyard
2025-06-23 13:49:20 +01:00
committed by GitHub
parent c26105d22e
commit 4ff8d9f6b4

View File

@@ -25,13 +25,13 @@ try {
}
try {
$r->__construct("baz", [], false);
$r->__construct("baz", [], 0);
} catch (Error $e) {
echo $e->getMessage() . "\n";
}
try {
$r->__construct("qax", [], false, null);
$r->__construct("qax", [], 0, null);
} catch (Error $e) {
echo $e->getMessage() . "\n";
}