SourceInterface.php 454 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Deploy\Source;
  7. use Magento\Deploy\Package\PackageFile;
  8. /**
  9. * Provide list of files located in some source location (e.g. modules directories, library, themes, else)
  10. */
  11. interface SourceInterface
  12. {
  13. /**
  14. * Return the list of files located in source
  15. *
  16. * @return PackageFile[]
  17. */
  18. public function get();
  19. }