Example #1
0
 /**
  * Re-open issue
  *
  * @param string $id Issue key
  *
  * {@internal subject to workflow progression rules }}}
  */
 public function reopenIssue($id)
 {
     $this->connect();
     $action = $this->getReopenActionId($id);
     if (isset($action)) {
         $this->soapClient->progressWorkflowAction($this->token, $id, $action, array());
     }
 }