summaryrefslogtreecommitdiff
path: root/ext/session/tests/026.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/session/tests/026.phpt')
-rw-r--r--ext/session/tests/026.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/tests/026.phpt b/ext/session/tests/026.phpt
index cc9a8de22c..b61039ee0c 100644
--- a/ext/session/tests/026.phpt
+++ b/ext/session/tests/026.phpt
@@ -19,14 +19,14 @@ session_start();
class a {
public $test = "hallo";
}
-
+
class b {
public $a;
function __construct(&$a) {
$this->a = &$a;
}
}
-
+
$a = new a();
$b = new b($a);