MergeableInterface.php 272 B

12345678910111213
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Asset;
  7. /**
  8. * Interface of an asset that can be merged with other assets
  9. */
  10. interface MergeableInterface extends LocalInterface
  11. {
  12. }