Example #1
0
 /**
  * Request select
  *
  * @param int $id
  * @return Response
  */
 public function request_select($id)
 {
     try {
         $adService = new SoapClient(Config::get('wsdl.ad'), array());
         $adService->selectRequest(array("requestId" => $id));
     } catch (Exception $ex) {
     }
 }