PhysicalInterface.php 464 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Design\Theme\Domain;
  7. /**
  8. * Interface PhysicalInterface
  9. */
  10. interface PhysicalInterface
  11. {
  12. /**
  13. * Create theme customization
  14. *
  15. * @param \Magento\Framework\View\Design\ThemeInterface $theme
  16. * @return \Magento\Framework\View\Design\ThemeInterface
  17. */
  18. public function createVirtualTheme($theme);
  19. }