Example #1
0
 public function request_issue($id)
 {
     $text = Input::get('text');
     try {
         $adService = new SoapClient(Config::get('wsdl.ad'), array());
         $adService->addRequestIssue(array("requestId" => $id, "text" => $text));
     } catch (Exception $ex) {
     }
 }