1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Asset\PreProcessor;
- use Magento\Framework\View\Asset\PreProcessorInterface;
- /**
- * Class Passthrough
- */
- class Passthrough implements PreProcessorInterface
- {
- /**
- * Transform content and/or content type for the specified preprocessing chain object
- *
- * @param Chain $chain
- * @return void
- */
- public function process(Chain $chain)
- {
- $chain->setContentType($chain->getTargetContentType());
- }
- }
|