示例#1
0
文件: Client.php 项目: mgrt/mgrt-php
 public function updateTemplate(Template $template)
 {
     $command = $this->getCommand('UpdateTemplate', array('templateId' => $template->getId(), 'template' => array('name' => $template->getName(), 'body' => $template->getBody())));
     return $this->execute($command);
 }