Ack.php 297 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. class Net_EPP_Frame_Command_Poll_Ack extends Net_EPP_Frame_Command_Poll {
  6. function __construct() {
  7. parent::__construct();
  8. $this->setOp('ack');
  9. }
  10. function setMsgID($id) {
  11. $this->command->setAttribute('msgID', $id);
  12. }
  13. }
  14. ?>