ext/dom: Remove bool type coercions in tests

This commit is contained in:
Gina Peter Banyard 2025-06-23 14:08:58 +02:00
parent c7778641dd
commit b068bef45d

View file

@ -5,7 +5,7 @@ dom
--FILE--
<?php
$dom = new DOMDocument;
$dom->formatOutput = 1;
$dom->formatOutput = true;
var_dump($dom->formatOutput);
$dom2 = clone $dom;