Create.php 212 B

12345678910111213
  1. <?php
  2. /**
  3. * @package Net_EPP
  4. */
  5. class Net_EPP_Frame_Command_Create extends Net_EPP_Frame_Command {
  6. function __construct($type) {
  7. $this->type = $type;
  8. parent::__construct('create', $type);
  9. }
  10. }
  11. ?>