Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'feature/docblock-simplification' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 23 changed files with 0 additions and 96 deletions.
5 changes: 0 additions & 5 deletions src/AutoDiscover.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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;
Expand All @@ -20,10 +19,6 @@

/**
* \Zend\Soap\AutoDiscover
*
* @category Zend
* @package Zend_Soap
* @subpackage AutoDiscover
*/
class AutoDiscover
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\AutoDiscover\DiscoveryStrategy;
Expand All @@ -16,10 +15,6 @@

/**
* Describes how types, return values and method details are detected during AutoDiscovery of a WSDL.
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
interface DiscoveryStrategyInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\AutoDiscover\DiscoveryStrategy;
Expand All @@ -16,10 +15,6 @@

/**
* Describes how types, return values and method details are detected during AutoDiscovery of a WSDL.
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/

class ReflectionDiscovery implements DiscoveryStrategyInterface
Expand Down
5 changes: 0 additions & 5 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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;
Expand All @@ -18,10 +17,6 @@

/**
* \Zend\Soap\Client
*
* @category Zend
* @package Zend_Soap
* @subpackage Client
*/
class Client implements ServerClient
{
Expand Down
6 changes: 0 additions & 6 deletions src/Client/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@
* @link https://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\Client;

if (extension_loaded('soap')) {

/**
* @category Zend
* @package Zend_Soap
* @subpackage Client
*/
class Common extends \SoapClient
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Client/DotNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Client;
Expand All @@ -21,10 +20,6 @@
* .NET SOAP client
*
* Class is intended to be used with .Net Web Services.
*
* @category Zend
* @package Zend_Soap
* @subpackage Client
*/
class DotNet extends SOAPClient
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Client;
Expand All @@ -20,10 +19,6 @@
* with a provided Server object.
*
* Could be used for development or testing purposes.
*
* @category Zend
* @package Zend_Soap
* @subpackage Client
*/
class Local extends SOAPClient
{
Expand Down
1 change: 0 additions & 1 deletion src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Exception;
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
* @link https://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\Exception;

/**
* @category Zend
* @package Zend_Soap
* @subpackage AutoDiscover
*/
interface ExceptionInterface
{}
1 change: 0 additions & 1 deletion src/Exception/ExtensionNotLoadedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/UnexpectedValueException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Exception;
Expand Down
5 changes: 0 additions & 5 deletions src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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;
Expand All @@ -20,10 +19,6 @@

/**
* Zend_Soap_Server
*
* @category Zend
* @package Zend_Soap
* @subpackage Server
*/
class Server implements \Zend\Server\Server
{
Expand Down
5 changes: 0 additions & 5 deletions src/Server/DocumentLiteralWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Server;
Expand Down Expand Up @@ -66,10 +65,6 @@
* $soap = new \Zend\Soap\Server($wsdlFile);
* $soap->setObject(new \Zend\Soap\Server\DocumentLiteralWrapper($service));
* $soap->handle();
*
* @category Zend
* @package Zend_Soap
* @subpackage Server
*/
class DocumentLiteralWrapper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Wsdl.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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;
Expand All @@ -18,9 +17,6 @@

/**
* \Zend\Soap\Wsdl
*
* @category Zend
* @package Zend_Soap
*/
class Wsdl
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link https://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\Wsdl\ComplexTypeStrategy;

/**
* Abstract class for Zend_Soap_Wsdl_Strategy.
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
abstract class AbstractComplexTypeStrategy implements ComplexTypeStrategyInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/AnyType.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link https://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\Wsdl\ComplexTypeStrategy;

/**
* Zend_Soap_Wsdl_Strategy_AnyType
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
class AnyType implements ComplexTypeStrategyInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Wsdl\ComplexTypeStrategy;
Expand All @@ -14,10 +13,6 @@

/**
* ArrayOfTypeComplex strategy
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
class ArrayOfTypeComplex extends DefaultComplexType
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link https://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\Wsdl\ComplexTypeStrategy;

/**
* Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
class ArrayOfTypeSequence extends DefaultComplexType
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Wsdl\ComplexTypeStrategy;
Expand All @@ -14,10 +13,6 @@

/**
* Interface strategies that generate an XSD-Schema for complex data types in WSDL files.
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
interface ComplexTypeStrategyInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/Composite.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Wsdl\ComplexTypeStrategy;
Expand All @@ -16,10 +15,6 @@

/**
* Zend_Soap_Wsdl_Strategy_Composite
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
class Composite implements ComplexTypeStrategy
{
Expand Down
5 changes: 0 additions & 5 deletions src/Wsdl/ComplexTypeStrategy/DefaultComplexType.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link https://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\Wsdl\ComplexTypeStrategy;
Expand All @@ -14,10 +13,6 @@

/**
* Zend_Soap_Wsdl_Strategy_DefaultComplexType
*
* @category Zend
* @package Zend_Soap
* @subpackage WSDL
*/
class DefaultComplexType extends AbstractComplexTypeStrategy
{
Expand Down

0 comments on commit 7b0d8d0

Please sign in to comment.