InstallerInterface.php 349 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Setup\SampleData;
  7. /**
  8. * Interface for SampleData modules installation
  9. */
  10. interface InstallerInterface
  11. {
  12. /**
  13. * Install SampleData module
  14. *
  15. * @return void
  16. */
  17. public function install();
  18. }