Domain.php 200 B

123456789101112
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. class Net_EPP_Frame_Command_Renew_Domain extends Net_EPP_Frame_Command_Renew {
  6. function __construct() {
  7. parent::__construct('domain');
  8. }
  9. }
  10. ?>