_command = $command; $this->_successCodes = $successCodes; } /** * Get the command which was sent to the server. * * @return string */ public function getCommand() { return $this->_command; } /** * Get the numeric response codes which indicate success for this command. * * @return integer[] */ public function getSuccessCodes() { return $this->_successCodes; } }