Hello.php 180 B

1234567891011
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. final class Net_EPP_Frame_Hello extends Net_EPP_Frame {
  6. function __construct() {
  7. parent::__construct('hello');
  8. $this->command = 'hello';
  9. }
  10. }