php-src/tests/classes/factory_and_singleton_009.phpt
2020-07-10 21:05:28 +02:00

20 lines
307 B
PHP

--TEST--
ZE2 factory and singleton, test 9
--FILE--
<?php
class test {
protected function __destruct() {
echo __METHOD__ . "\n";
}
}
$obj = new test;
?>
===DONE===
--EXPECT--
===DONE===
Warning: Call to protected test::__destruct() from global scope during shutdown ignored in Unknown on line 0