Exemplo n.º 1
0
 /**
  * @see lib/WebServices/WebServices_SoapRequestorAbsract::validate()
  */
 protected function validate()
 {
     if (empty($this->username)) {
         return 'The username is not specified.';
     }
     if (empty($this->applicationId)) {
         return 'The application ID is not specified.';
     }
     if (empty($this->password)) {
         return 'The password is not specified.';
     }
     return parent::validate();
 }