AdapterInterface.php 437 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Interface for minification adapters
  8. */
  9. namespace Magento\Framework\Code\Minifier;
  10. /**
  11. * Interface \Magento\Framework\Code\Minifier\AdapterInterface
  12. *
  13. */
  14. interface AdapterInterface
  15. {
  16. /**
  17. * Minify content
  18. *
  19. * @param string $content
  20. * @return string
  21. */
  22. public function minify($content);
  23. }