<?php
namespace MailChannels;
class UAPIJsonImpl extends UAPI {
private $jsonImpl;
public function __construct($host, $username, $hash, $version, $client=null) {
$this->jsonImpl = new CPanelGenericAPIJsonImpl($host, $username, $hash, $version, $client, 3);
}
protected function api($user, $module, $function, $params=array()) {
return $this->jsonImpl->api($user, $module, $function, $params);
}
}