12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Interface for minification adapters
- */
- namespace Magento\Framework\Code\Minifier;
- /**
- * Interface \Magento\Framework\Code\Minifier\AdapterInterface
- *
- */
- interface AdapterInterface
- {
- /**
- * Minify content
- *
- * @param string $content
- * @return string
- */
- public function minify($content);
- }
|