]> granicus.if.org Git - php/commitdiff
Test is fixed. (__call() requires two parameters).
authorDmitry Stogov <dmitry@php.net>
Tue, 10 Aug 2004 09:57:16 +0000 (09:57 +0000)
committerDmitry Stogov <dmitry@php.net>
Tue, 10 Aug 2004 09:57:16 +0000 (09:57 +0000)
ext/soap/tests/server021.phpt

index d557204b5f02844c961b99f79527eb8cba9a42ef..787e959fb36d6118a39444e7ff1817ac389c3617 100644 (file)
@@ -5,7 +5,7 @@ SOAP Server 21: SoapServer::setClass and __call()
 --FILE--
 <?php
 class Foo {
-  function __call($name) {
+  function __call($name, $args) {
     if ($name == "test") {
       return "Hello World";
     } else {