| Current Path : /var/www/clients/client3/web2/web/vendor/laminas/laminas-server/src/ |
| Current File : /var/www/clients/client3/web2/web/vendor/laminas/laminas-server/src/Client.php |
<?php
/**
* @see https://github.com/laminas/laminas-server for the canonical source repository
* @copyright https://github.com/laminas/laminas-server/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-server/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Server;
/**
* Client Interface
* @deprecated Since 2.9.0; Client is replaced by ClientInterface and will be removed in 3.0.
*/
interface Client
{
/**
* Executes remote call
*
* Unified interface for calling custom remote methods.
*
* @param string $method Remote call name.
* @param array $params Call parameters.
* @return mixed Remote call results.
*/
public function call($method, $params = []);
}