From: Ilia Alshanetsky Date: Sun, 11 Nov 2007 13:38:03 +0000 (+0000) Subject: Fixed parse error described in bug #43228 X-Git-Tag: RELEASE_1_3_1~670 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f100892df07cce75e3047e007e586179f54e69b3;p=php Fixed parse error described in bug #43228 --- diff --git a/ext/soap/tests/server021.phpt b/ext/soap/tests/server021.phpt index d9913060b6..245c464433 100644 --- a/ext/soap/tests/server021.phpt +++ b/ext/soap/tests/server021.phpt @@ -9,7 +9,7 @@ class Foo { if ($name == "test") { return "Hello World"; } else { - return SoapFault("Server","Function $name doesn't exist"); + return new SoapFault("Server","Function $name doesn't exist"); } } }