summaryrefslogtreecommitdiff
path: root/ext/session/tests/bug32330.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/session/tests/bug32330.phpt')
-rw-r--r--ext/session/tests/bug32330.phpt24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/session/tests/bug32330.phpt b/ext/session/tests/bug32330.phpt
index 4d432ef1d4..4240ff7160 100644
--- a/ext/session/tests/bug32330.phpt
+++ b/ext/session/tests/bug32330.phpt
@@ -16,38 +16,38 @@ error_reporting(E_ALL);
function sOpen($path, $name)
{
- echo "open: path = {$path}, name = {$name}\n";
- return TRUE;
+ echo "open: path = {$path}, name = {$name}\n";
+ return TRUE;
}
function sClose()
{
- echo "close\n";
- return TRUE;
+ echo "close\n";
+ return TRUE;
}
function sRead($id)
{
- echo "read: id = {$id}\n";
- return '';
+ echo "read: id = {$id}\n";
+ return '';
}
function sWrite($id, $data)
{
- echo "write: id = {$id}, data = {$data}\n";
- return TRUE;
+ echo "write: id = {$id}, data = {$data}\n";
+ return TRUE;
}
function sDestroy($id)
{
- echo "destroy: id = {$id}\n";
- return TRUE;
+ echo "destroy: id = {$id}\n";
+ return TRUE;
}
function sGC($maxlifetime)
{
- echo "gc: maxlifetime = {$maxlifetime}\n";
- return TRUE;
+ echo "gc: maxlifetime = {$maxlifetime}\n";
+ return TRUE;
}
session_set_save_handler( 'sOpen', 'sClose', 'sRead', 'sWrite', 'sDestroy', 'sGC' );