/**
  * {@inheritDoc}
  */
 public function filterResponse(CommonSoapResponse $response)
 {
     parent::filterResponse($response);
     $this->attachments = $response->getAttachments();
 }
Exemple #2
0
 /**
  * {@inheritDoc}
  */
 public function filterResponse(CommonSoapResponse $response)
 {
     $response->setAttachments($this->attachments);
     $this->attachments = array();
     parent::filterResponse($response);
 }