Example #1
0
 public function getSignedDocInfo($sessionCode)
 {
     try {
         $result = $this->soap->getSignedDocInfo($sessionCode);
         if ($result['Status'] === 'OK') {
             return $result;
         } else {
             throw new SigningException($result['Status']);
         }
     } catch (\SoapFault $e) {
         $this->catchSoapError($e);
     }
 }