login = $login; $this->password = $password; } public function getAuthentication() { return \SOAP_AUTHENTICATION_BASIC; } public function getLogin() { return $this->login; } public function getPassword() { return $this->password; } public function toArray() { return [ 'authentication' => $this->getAuthentication(), 'login' => $this->getLogin(), 'password' => $this->getPassword(), ]; } }