php-src/tests/classes/factory_and_singleton_010.phpt
2017-01-30 22:50:25 +01:00

20 lines
302 B
PHP

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