summaryrefslogtreecommitdiff
path: root/ext/soap/tests/bugs/bug29830.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/tests/bugs/bug29830.phpt')
-rw-r--r--ext/soap/tests/bugs/bug29830.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/soap/tests/bugs/bug29830.phpt b/ext/soap/tests/bugs/bug29830.phpt
index dc090f82cc..adbbd7ffa5 100644
--- a/ext/soap/tests/bugs/bug29830.phpt
+++ b/ext/soap/tests/bugs/bug29830.phpt
@@ -5,13 +5,13 @@ Bug #29844 (SoapServer::setClass() should not export non-public methods)
--FILE--
<?php
-class hello_world {
+class hello_world {
public function hello($to) {
return 'Hello ' . $to;
- }
+ }
private function bye($to) {
return 'Bye ' . $to;
- }
+ }
}
$server = new SoapServer(NULL, array("uri"=>"test://"));