Host.php 198 B

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