factory_and_singleton_010.phpt 301 B

12345678910111213141516171819
  1. --TEST--
  2. ZE2 factory and singleton, test 10
  3. --FILE--
  4. <?php
  5. class test {
  6. private function __destruct() {
  7. echo __METHOD__ . "\n";
  8. }
  9. }
  10. $obj = new test;
  11. ?>
  12. ===DONE===
  13. --EXPECT--
  14. ===DONE===
  15. Warning: Call to private test::__destruct() from context '' during shutdown ignored in Unknown on line 0