summaryrefslogtreecommitdiff
path: root/tests/classes/factory_and_singleton_010.phpt
blob: bd7e7e32b71ce773abc225544262f8b9fcd85ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--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