Poll.php 259 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. abstract class Net_EPP_Frame_Command_Poll extends Net_EPP_Frame_Command {
  6. function __construct() {
  7. parent::__construct('poll', '');
  8. }
  9. function setOp($op) {
  10. $this->command->setAttribute('op', $op);
  11. }
  12. }
  13. ?>