Domain.php 204 B

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