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

Commit

Permalink
CS cleanup of JSON-compliant support
Browse files Browse the repository at this point in the history
- CS cleanup -- imports, docblocks, etc.
- Ensured that AMF server also supports new Server interface features
  • Loading branch information
weierophinney committed Jan 16, 2012
1 parent 6c6ec39 commit 2989a80
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,20 @@
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* @namespace
*/
namespace Zend\Soap;
use Zend\Server\Client as ClientInterface;

use Zend\Server\Client as ServerClient;

/**
* \Zend\Soap\Client\Client
*
* @uses \Zend\Soap\Client\Common
* @uses \Zend\Soap\Client\Exception
* @uses \Zend\Soap\Client\Local
* @uses \Zend\Soap\Server
* @category Zend
* @package Zend_Soap
* @subpackage Client
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Client implements ClientInterface
class Client implements ServerClient
{
/**
* Encoding
Expand Down Expand Up @@ -1105,8 +1099,8 @@ public function __call($name, $arguments)
/**
* Send an RPC request to the service for a specific method.
*
* @param string $method Name of the method we want to call.
* @param array $params List of parameters for the method.
* @param string $method Name of the method we want to call.
* @param array $params List of parameters for the method.
* @return mixed Returned results.
*/
public function call($method, $params = array())
Expand Down

0 comments on commit 2989a80

Please sign in to comment.