summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round2/Base/round2_base.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/tests/interop/Round2/Base/round2_base.inc')
-rw-r--r--ext/soap/tests/interop/Round2/Base/round2_base.inc80
1 files changed, 0 insertions, 80 deletions
diff --git a/ext/soap/tests/interop/Round2/Base/round2_base.inc b/ext/soap/tests/interop/Round2/Base/round2_base.inc
deleted file mode 100644
index b197f5bddd..0000000000
--- a/ext/soap/tests/interop/Round2/Base/round2_base.inc
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-class SOAP_Interop_Base {
-
- function echoString($inputString)
- {
- return $inputString;
- }
-
- function echoStringArray($inputStringArray)
- {
- return $inputStringArray;
- }
-
-
- function echoInteger($inputInteger)
- {
- return $inputInteger;
- }
-
- function echoIntegerArray($inputIntegerArray)
- {
- return $inputIntegerArray;
- }
-
- function echoFloat($inputFloat)
- {
- return $inputFloat;
- }
-
- function echoFloatArray($inputFloatArray)
- {
- return $inputFloatArray;
- }
-
- function echoStruct($inputStruct)
- {
- return $inputStruct;
- }
-
- function echoStructArray($inputStructArray)
- {
- return $inputStructArray;
- }
-
- function echoVoid()
- {
- return NULL;
- }
-
- function echoBase64($b_encoded)
- {
- return $b_encoded;
- }
-
- function echoDate($timeInstant)
- {
- return $timeInstant;
- }
-
- function echoHexBinary($hb)
- {
- return $hb;
- }
-
- function echoDecimal($dec)
- {
- return $dec;
- }
-
- function echoBoolean($boolean)
- {
- return $boolean;
- }
-
-}
-
-$server = new SoapServer(dirname(__FILE__)."/round2_base.wsdl");
-$server->setClass("SOAP_Interop_Base");
-$server->handle();
-?> \ No newline at end of file