/**
  * Get final array of SOAP options.
  *
  * @return array(string=>mixed)
  */
 public function getSoapOptions()
 {
     return parent::getSoapOptions() + $this->soapOptionAuthentication;
 }
 /**
  * Initializes all options with the defaults used in the native SoapServer.
  */
 public function __construct()
 {
     parent::__construct();
     // TODO: this is not the default, but safer
     $this->withErrorReporting(false);
 }