get([ 'Action' => 'DomainList', 'offset' => $offset, 'length' => $length ]), $offset, $length); } public function store(array $params) { // TODO: Implement add() method. } public function delete(array $params) { // TODO: Implement delete() method. return $this->get([ 'Action' => 'DeleteDomain', 'DomainName' => $params['name'], ]); } public function read($name) { // TODO: Implement info() method. return $this->get([ 'Action' => 'DescribeDomainInfo', 'DomainName' => $name ]); } }