StrategyInterface.php 414 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Deploy\Strategy;
  7. use Magento\Deploy\Package\Package;
  8. /**
  9. * Deployment strategy interface
  10. */
  11. interface StrategyInterface
  12. {
  13. /**
  14. * Execute deployment of static files
  15. *
  16. * @param array $options
  17. * @return Package[]
  18. */
  19. public function deploy(array $options);
  20. }