summaryrefslogtreecommitdiff
path: root/ext/session/tests/006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/session/tests/006.phpt')
-rw-r--r--ext/session/tests/006.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/tests/006.phpt b/ext/session/tests/006.phpt
index 7653b8c167..11d4cc3178 100644
--- a/ext/session/tests/006.phpt
+++ b/ext/session/tests/006.phpt
@@ -18,14 +18,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);