SubmoduleIPInterface.php 288 B

1234567891011121314
  1. <?php
  2. namespace MGModule\DNSManager2\mgLibs\custom\dns\interfaces;
  3. /**
  4. * Interfejs dla submodułów obsługujących IP przy tworzeniu zonów
  5. */
  6. interface SubmoduleIPInterface {
  7. /**
  8. *
  9. * @param string $ip poprawne ip
  10. */
  11. public function setIP($ip);
  12. }