Host.php 196 B

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