Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Client/DotNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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.
Expand Down
12 changes: 6 additions & 6 deletions src/Client/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,31 @@

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
* with a provided Server object.
*
* 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;

Expand Down