summaryrefslogtreecommitdiff
path: root/ext/soap/tests/bugs/bug47273.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /ext/soap/tests/bugs/bug47273.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'ext/soap/tests/bugs/bug47273.phpt')
-rw-r--r--ext/soap/tests/bugs/bug47273.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/soap/tests/bugs/bug47273.phpt b/ext/soap/tests/bugs/bug47273.phpt
index c23bb5a592..a393b701ab 100644
--- a/ext/soap/tests/bugs/bug47273.phpt
+++ b/ext/soap/tests/bugs/bug47273.phpt
@@ -16,12 +16,12 @@ EOF;
class SoapFaultTest
{
public function test1() {
- // Test #1
+ // Test #1
return 'Test #1 exception with some special chars: Äßö';
}
public function test2() {
// Test #2
- //throw new SoapFault('Server', 'Test #2 exception with some special chars: Äßö');
+ //throw new SoapFault('Server', 'Test #2 exception with some special chars: Äßö');
throw new Exception('Test #2 exception with some special chars: Äßö');
}
}
@@ -32,9 +32,9 @@ $server = new SoapServer(null, array(
$server->setClass('SoapFaultTest');
try {
- $server->handle($request1);
+ $server->handle($request1);
} catch (Exception $e) {
- $server->fault("Sender", $e->getMessage());
+ $server->fault("Sender", $e->getMessage());
}
try {
$server->handle($request2);