1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 05:02:27 +02:00
Files
archived-php-src/ext/dom/tests/property_write_errors.phpt
Máté Kocsis 7da2151f7a Declare typed properties in ext/dom
Closes GH-7013
2021-05-26 12:23:43 +02:00

34 lines
648 B
PHP

--TEST--
Test property write errors
--EXTENSIONS--
dom
--FILE--
<?php
require_once("dom_test.inc");
$dom = new DOMDocument();
try {
$dom->nodeValue = [];
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
try {
$dom->nodeType += 1;
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
try {
$dom->xmlEncoding = null;
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
Cannot assign array to property DOMNode::$nodeValue of type ?string
Cannot write read-only property DOMDocument::$nodeType
Cannot write read-only property DOMDocument::$xmlEncoding