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:
committed by
GitHub
parent
c26105d22e
commit
4ff8d9f6b4
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user