summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupE/round3_groupE_list.inc
blob: 83454c0774439f278288d339ecd88f2bab67b3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class SOAP_Interop_GroupE {

    function echoLinkedList($inputList)
    {
      global $d;
      $d = $inputList;
      return $inputList;
    }

}

$server = new SoapServer(dirname(__FILE__)."/round3_groupE_list.wsdl");
$server->setClass("SOAP_Interop_GroupE");
$server->handle();
var_dump($d);
?>