From e1c33a054c1945a8250ed91fd68c9d8f2b8ab8f5 Mon Sep 17 00:00:00 2001 From: dima Date: Fri, 12 Jun 2015 16:13:02 +0300 Subject: [PATCH] camelcase naming for class names --- src/Client/DotNet.php | 4 ++-- src/Client/Local.php | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Client/DotNet.php b/src/Client/DotNet.php index abcce5c9..aa672d8e 100644 --- a/src/Client/DotNet.php +++ b/src/Client/DotNet.php @@ -11,7 +11,7 @@ use Zend\Http\Client\Adapter\Curl as CurlClient; use Zend\Http\Response as HttpResponse; -use Zend\Soap\Client as SOAPClient; +use Zend\Soap\Client as SoapClient; use Zend\Soap\Client\Common as CommonClient; use Zend\Soap\Exception; use Zend\Uri\Http as HttpUri; @@ -21,7 +21,7 @@ * * Class is intended to be used with .NET Web Services. */ -class DotNet extends SOAPClient +class DotNet extends SoapClient { /** * Curl HTTP client adapter. diff --git a/src/Client/Local.php b/src/Client/Local.php index fc9868c0..be210968 100644 --- a/src/Client/Local.php +++ b/src/Client/Local.php @@ -9,8 +9,8 @@ namespace Zend\Soap\Client; -use Zend\Soap\Client as SOAPClient; -use Zend\Soap\Server as SOAPServer; +use Zend\Soap\Client as SoapClient; +use Zend\Soap\Server as SoapServer; /** * Class is intended to be used as local SOAP client which works @@ -18,22 +18,22 @@ * * Could be used for development or testing purposes. */ -class Local extends SOAPClient +class Local extends SoapClient { /** * Server object - * @var SOAPServer + * @var SoapServer */ protected $server; /** * Local client constructor * - * @param SOAPServer $server + * @param SoapServer $server * @param string $wsdl * @param array $options */ - public function __construct(SOAPServer $server, $wsdl, $options = null) + public function __construct(SoapServer $server, $wsdl, $options = null) { $this->server = $server;