Req.php 214 B

1234567891011121314
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. class Net_EPP_Frame_Command_Poll_Req extends Net_EPP_Frame_Command_Poll {
  6. function __construct() {
  7. parent::__construct();
  8. $this->setOp('req');
  9. }
  10. }
  11. ?>