SubmoduleImportInterface.php 263 B

12345678910111213
  1. <?php
  2. namespace MGModule\DNSManager2\mgLibs\custom\dns\interfaces;
  3. /**
  4. * Interfejs dla modułów umożliwiających import
  5. */
  6. interface SubmoduleImportInterface {
  7. /**
  8. * @return array Domain => [IP]
  9. */
  10. public function getZones();
  11. }