diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-07-12 07:55:17 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-07-12 07:55:17 +0000 |
commit | b6d2c540595c856f2254b1743fda6ec2ce6f05d7 (patch) | |
tree | 67761339ccdd869155843fa0184596b984752141 /ext/pdo/tests | |
parent | 8bb047ee977936b10d8e415d18e9a82b87b0af15 (diff) | |
download | php-git-b6d2c540595c856f2254b1743fda6ec2ce6f05d7.tar.gz |
Destructors call order is changed (Fixed bug #36759 - Objects destructors are invoked in wrong order when script is finished)
Diffstat (limited to 'ext/pdo/tests')
-rw-r--r-- | ext/pdo/tests/pdo_026.phpt | 2 | ||||
-rwxr-xr-x | ext/pdo/tests/pdo_029.phpt | 2 | ||||
-rwxr-xr-x | ext/pdo/tests/pdo_030.phpt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdo/tests/pdo_026.phpt b/ext/pdo/tests/pdo_026.phpt index a0891bedfd..d993f32445 100644 --- a/ext/pdo/tests/pdo_026.phpt +++ b/ext/pdo/tests/pdo_026.phpt @@ -107,5 +107,5 @@ array(3) { string(3) "tsr" } ===DONE=== -PDODatabase::__destruct() PDOStatementX::__destruct() +PDODatabase::__destruct() diff --git a/ext/pdo/tests/pdo_029.phpt b/ext/pdo/tests/pdo_029.phpt index c0b674cd45..a5847149cc 100755 --- a/ext/pdo/tests/pdo_029.phpt +++ b/ext/pdo/tests/pdo_029.phpt @@ -121,5 +121,5 @@ array(3) { string(3) "tsr" } ===DONE=== -PDODatabase::__destruct() PDOStatementX::__destruct() +PDODatabase::__destruct() diff --git a/ext/pdo/tests/pdo_030.phpt b/ext/pdo/tests/pdo_030.phpt index 854dedc2ca..b6482d69d3 100755 --- a/ext/pdo/tests/pdo_030.phpt +++ b/ext/pdo/tests/pdo_030.phpt @@ -135,5 +135,5 @@ array(3) { string(3) "tsr" } ===DONE=== -PDODatabase::__destruct() PDOStatementX::__destruct() +PDODatabase::__destruct() |