summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc')
-rw-r--r--ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc37
1 files changed, 0 insertions, 37 deletions
diff --git a/ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc b/ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc
deleted file mode 100644
index ef00e3bfd0..0000000000
--- a/ext/soap/tests/interop/Round2/GroupB/round2_groupB.inc
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-class SOAP_Interop_GroupB {
-
- function echoStructAsSimpleTypes ($struct)
- {
- return array('outputString' => $struct->varString,
- 'outputInteger' => $struct->varInt,
- 'outputFloat' => $struct->varFloat);
- }
-
- function echoSimpleTypesAsStruct($string, $int, $float)
- {
- return (object)array("varString" => $string,
- "varInt" => $int,
- "varFloat" => $float);
- }
-
- function echoNestedStruct($struct)
- {
- return $struct;
- }
-
- function echo2DStringArray($ary)
- {
- return $ary;
- }
-
- function echoNestedArray($ary)
- {
- return $ary;
- }
-}
-
-$server = new SoapServer(dirname(__FILE__)."/round2_groupB.wsdl");
-$server->setClass("SOAP_Interop_GroupB");
-$server->handle();
-?>