blob: 6f2014f48cc6830283bd894bb7f8a03cd6d0437c (
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 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
|