diff --git a/src/Wsdl.php b/src/Wsdl.php index cab0c17b..d830a56e 100644 --- a/src/Wsdl.php +++ b/src/Wsdl.php @@ -182,7 +182,7 @@ public function setClassMap($classMap) */ public function setUri($uri) { - if ($uri instanceof Uri){ + if ($uri instanceof Uri) { $uri = $uri->toString(); } diff --git a/test/AutoDiscover/OnlineTest.php b/test/AutoDiscover/OnlineTest.php index b77d55c6..2d00b361 100644 --- a/test/AutoDiscover/OnlineTest.php +++ b/test/AutoDiscover/OnlineTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\AutoDiscover; @@ -15,9 +14,6 @@ use Zend\Soap\Client; /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap */ class OnlineTest extends \PHPUnit_Framework_TestCase diff --git a/test/AutoDiscoverTest.php b/test/AutoDiscoverTest.php index d02f1ab1..f168cf23 100644 --- a/test/AutoDiscoverTest.php +++ b/test/AutoDiscoverTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap; @@ -22,9 +21,6 @@ /** * Test cases for Zend_Soap_AutoDiscover * - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap */ class AutoDiscoverTest extends \PHPUnit_Framework_TestCase @@ -184,8 +180,6 @@ public function dataProviderForAutoDiscoverConstructorStrategy() ); } - /** - */ public function testGetDiscoveryStrategy() { $server = new AutoDiscover(); @@ -196,8 +190,6 @@ public function testGetDiscoveryStrategy() ); } - /** - */ public function testAutoDiscoverConstructorWsdlClass() { $server = new AutoDiscover(null, null, '\Zend\Soap\Wsdl'); diff --git a/test/Client/DotNetTest.php b/test/Client/DotNetTest.php index 68930024..70e6dd9d 100644 --- a/test/Client/DotNetTest.php +++ b/test/Client/DotNetTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Client; @@ -19,9 +18,6 @@ /** * .NET SOAP client tester. * - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap */ class DotNetTest extends PHPUnit_Framework_TestCase diff --git a/test/ClientTest.php b/test/ClientTest.php index c4305336..ee9c43cf 100644 --- a/test/ClientTest.php +++ b/test/ClientTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap; @@ -18,9 +17,6 @@ use Zend\Soap\Wsdl; /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap */ class ClientTest extends \PHPUnit_Framework_TestCase @@ -280,8 +276,6 @@ public function testGetFunctions() 'string testFunc4()')); } - /** - */ public function testGetTypes() { $wsdlFilename = __DIR__ . '/TestAsset/GetTypesWsdlTest.wsdl'; diff --git a/test/Server/DocumentLiteralWrapperTest.php b/test/Server/DocumentLiteralWrapperTest.php index a19c801c..93f82363 100644 --- a/test/Server/DocumentLiteralWrapperTest.php +++ b/test/Server/DocumentLiteralWrapperTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Server; diff --git a/test/ServerTest.php b/test/ServerTest.php index 1a127b6b..f8e8171d 100644 --- a/test/ServerTest.php +++ b/test/ServerTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap; @@ -18,9 +17,6 @@ /** * Zend_Soap_Server * - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Server */ diff --git a/test/TestAsset/MockCallUserFunc.php b/test/TestAsset/MockCallUserFunc.php index 11af2921..8856db0d 100644 --- a/test/TestAsset/MockCallUserFunc.php +++ b/test/TestAsset/MockCallUserFunc.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset; diff --git a/test/TestAsset/MyCalculatorService.php b/test/TestAsset/MyCalculatorService.php index 04be6a59..1d503b52 100644 --- a/test/TestAsset/MyCalculatorService.php +++ b/test/TestAsset/MyCalculatorService.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset; diff --git a/test/TestAsset/WsdlTestClass.php b/test/TestAsset/WsdlTestClass.php index 21269ccb..e46f1ea4 100644 --- a/test/TestAsset/WsdlTestClass.php +++ b/test/TestAsset/WsdlTestClass.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset; diff --git a/test/TestAsset/call_user_func.php b/test/TestAsset/call_user_func.php index dcc593c1..75971388 100644 --- a/test/TestAsset/call_user_func.php +++ b/test/TestAsset/call_user_func.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace Zend\Soap; diff --git a/test/TestAsset/commontypes.php b/test/TestAsset/commontypes.php index 1e96fbb2..c1a9ae80 100644 --- a/test/TestAsset/commontypes.php +++ b/test/TestAsset/commontypes.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset; @@ -104,11 +103,6 @@ function TestFunc9($foo, $bar) return "$foo $bar"; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class TestFixingMultiplePrototypes { /** @@ -125,11 +119,6 @@ public function testFunc($a=100, $b=200, $d=300) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Test { /** @@ -189,11 +178,6 @@ class AutoDiscoverTestClass1 public $param = "hello"; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class AutoDiscoverTestClass2 { /** @@ -226,11 +210,6 @@ public function addMultiple($test) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTypeB { /** @@ -243,11 +222,6 @@ class ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTypeA { /** @@ -256,11 +230,6 @@ class ComplexTypeA public $baz = array(); } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTest { /** @@ -269,11 +238,6 @@ class ComplexTest public $var = 5; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexObjectStructure { /** @@ -297,11 +261,6 @@ class ComplexObjectStructure public $array = array(1, 2, 3); } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexObjectWithObjectStructure { /** @@ -310,11 +269,6 @@ class ComplexObjectWithObjectStructure public $object; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class MyService { /** @@ -341,11 +295,6 @@ public function baz($baz) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class MyServiceSequence { /** @@ -380,11 +329,6 @@ public function bazNested($baz) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class MyResponse { /** @@ -393,11 +337,6 @@ class MyResponse public $p1; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Recursion { /** @@ -419,11 +358,6 @@ function OneWay($message) } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class NoReturnType { /** diff --git a/test/TestAsset/fulltests/server1.php b/test/TestAsset/fulltests/server1.php index 5fb76e40..3d582695 100644 --- a/test/TestAsset/fulltests/server1.php +++ b/test/TestAsset/fulltests/server1.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset\fulltests; -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Server1 { /** @@ -41,11 +35,6 @@ public function request($request) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTypeB { /** @@ -58,11 +47,6 @@ class ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTypeA { /** diff --git a/test/TestAsset/fulltests/server2.php b/test/TestAsset/fulltests/server2.php index 57a0b2d1..c325c88a 100644 --- a/test/TestAsset/fulltests/server2.php +++ b/test/TestAsset/fulltests/server2.php @@ -5,16 +5,10 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\TestAsset\fulltests; -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class ComplexTypeB { /** @@ -27,11 +21,6 @@ class ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Server2 { /** diff --git a/test/Wsdl/ArrayOfTypeComplexStrategyTest.php b/test/Wsdl/ArrayOfTypeComplexStrategyTest.php index 289951f0..54b2a7b0 100644 --- a/test/Wsdl/ArrayOfTypeComplexStrategyTest.php +++ b/test/Wsdl/ArrayOfTypeComplexStrategyTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Wsdl; @@ -17,9 +16,6 @@ use ZendTest\Soap\WsdlTestHelper; /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl */ diff --git a/test/Wsdl/ArrayOfTypeSequenceStrategyTest.php b/test/Wsdl/ArrayOfTypeSequenceStrategyTest.php index 3a45834c..2b088afb 100644 --- a/test/Wsdl/ArrayOfTypeSequenceStrategyTest.php +++ b/test/Wsdl/ArrayOfTypeSequenceStrategyTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Wsdl; @@ -15,9 +14,6 @@ require_once __DIR__ . '/../TestAsset/commontypes.php'; /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl */ diff --git a/test/Wsdl/CompositeStrategyTest.php b/test/Wsdl/CompositeStrategyTest.php index f239d080..ac6af783 100644 --- a/test/Wsdl/CompositeStrategyTest.php +++ b/test/Wsdl/CompositeStrategyTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Wsdl\ComplexTypeStrategy; @@ -17,19 +16,12 @@ use Zend\Soap\Wsdl\ComplexTypeStrategy\ArrayOfTypeSequence; use ZendTest\Soap\WsdlTestHelper; -/** - * @package Zend_Soap - * @subpackage UnitTests - */ /** Zend_Soap_Wsdl */ /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl */ @@ -127,9 +119,6 @@ public function testCompositeRequiresContextForAddingComplexTypesOtherwiseThrows $strategy->addComplexType('Test'); } - /** - * - */ public function testGetDefaultStrategy() { $strategyClass = 'Zend\Soap\Wsdl\ComplexTypeStrategy\AnyType'; diff --git a/test/Wsdl/DefaultComplexTypeTest.php b/test/Wsdl/DefaultComplexTypeTest.php index 1914ba14..b9841803 100644 --- a/test/Wsdl/DefaultComplexTypeTest.php +++ b/test/Wsdl/DefaultComplexTypeTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap\Wsdl; @@ -18,9 +17,6 @@ require_once __DIR__ . '/../TestAsset/commontypes.php'; /** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl */ diff --git a/test/WsdlTest.php b/test/WsdlTest.php index 62b3a185..d52ed614 100644 --- a/test/WsdlTest.php +++ b/test/WsdlTest.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ namespace ZendTest\Soap; @@ -16,9 +15,6 @@ /** * Zend_Soap_Server * - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl **/ @@ -251,9 +247,6 @@ public function testAddPortOperation($operationName, $inputRequest = null, $outp } } - /** - * - */ public function dataProviderForAddPortOperation() { return array( @@ -360,9 +353,6 @@ public function testAddBindingOperation($operationName, } } - /** - * - */ public function dataProviderForAddBindingOperation() { @@ -535,10 +525,6 @@ public function ampersandInUrlDataProvider() ); } - - /** - * - */ public function testAddDocumentation() { $doc = 'This is a description for Port Type node.'; diff --git a/test/WsdlTestHelper.php b/test/WsdlTestHelper.php index 409b7690..4fa6661d 100644 --- a/test/WsdlTestHelper.php +++ b/test/WsdlTestHelper.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License -* @package Zend_Soap */ namespace ZendTest\Soap; @@ -19,9 +18,6 @@ /** * Zend_Soap_Server * -* @category Zend -* @package Zend_Soap -* @subpackage UnitTests * @group Zend_Soap * @group Zend_Soap_Wsdl **/ diff --git a/test/_files/commontypes.php b/test/_files/commontypes.php index 946fc7d4..3435a42d 100644 --- a/test/_files/commontypes.php +++ b/test/_files/commontypes.php @@ -5,7 +5,6 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ /* Test Functions */ @@ -102,11 +101,6 @@ function Zend_Soap_AutoDiscover_TestFunc9($foo, $bar) return "$foo $bar"; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_TestFixingMultiplePrototypes { /** @@ -123,11 +117,6 @@ public function testFunc($a=100, $b=200, $d=300) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_Test { /** @@ -187,11 +176,6 @@ class Zend_Soap_AutoDiscoverTestClass1 public $param = "hello"; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscoverTestClass2 { /** @@ -224,11 +208,6 @@ public function addMultiple($test) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTypeB { /** @@ -241,11 +220,6 @@ class Zend_Soap_Wsdl_ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTypeA { /** @@ -254,11 +228,6 @@ class Zend_Soap_Wsdl_ComplexTypeA public $baz = array(); } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTest { /** @@ -267,11 +236,6 @@ class Zend_Soap_Wsdl_ComplexTest public $var = 5; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexObjectStructure { /** @@ -295,11 +259,6 @@ class Zend_Soap_Wsdl_ComplexObjectStructure public $array = array(1, 2, 3); } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexObjectWithObjectStructure { /** @@ -308,11 +267,6 @@ class Zend_Soap_Wsdl_ComplexObjectWithObjectStructure public $object; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_MyService { /** @@ -339,11 +293,6 @@ public function baz($baz) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_MyServiceSequence { /** @@ -378,11 +327,6 @@ public function bazNested($baz) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_MyResponse { /** @@ -391,11 +335,6 @@ class Zend_Soap_AutoDiscover_MyResponse public $p1; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_Recursion { /** @@ -417,11 +356,6 @@ function Zend_Soap_AutoDiscover_OneWay($message) } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_AutoDiscover_NoReturnType { /** diff --git a/test/_files/fulltests/server1.php b/test/_files/fulltests/server1.php index 4483f864..1a870c10 100644 --- a/test/_files/fulltests/server1.php +++ b/test/_files/fulltests/server1.php @@ -5,18 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ require_once "Zend/Soap/AutoDiscover.php"; require_once "Zend/Soap/Server.php"; require_once "Zend/Soap/Wsdl/Strategy/ArrayOfTypeComplex.php"; -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Service_Server1 { /** @@ -43,11 +37,6 @@ public function request($request) } } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTypeB { /** @@ -60,11 +49,6 @@ class Zend_Soap_Wsdl_ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTypeA { /** diff --git a/test/_files/fulltests/server2.php b/test/_files/fulltests/server2.php index 55ef9ed2..96dd55de 100644 --- a/test/_files/fulltests/server2.php +++ b/test/_files/fulltests/server2.php @@ -5,18 +5,12 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @package Zend_Soap */ require_once "Zend/Soap/AutoDiscover.php"; require_once "Zend/Soap/Server.php"; require_once "Zend/Soap/Wsdl/Strategy/ArrayOfTypeComplex.php"; -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Wsdl_ComplexTypeB { /** @@ -29,11 +23,6 @@ class Zend_Soap_Wsdl_ComplexTypeB public $foo; } -/** - * @category Zend - * @package Zend_Soap - * @subpackage UnitTests - */ class Zend_Soap_Service_Server2 { /**