VirtualInterface.php 532 B

1234567891011121314151617181920212223242526
  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 VirtualInterface
  9. */
  10. interface VirtualInterface
  11. {
  12. /**
  13. * Get 'staging' theme
  14. *
  15. * @return \Magento\Framework\View\Design\ThemeInterface
  16. */
  17. public function getStagingTheme();
  18. /**
  19. * Get 'physical' theme
  20. *
  21. * @return \Magento\Framework\View\Design\ThemeInterface
  22. */
  23. public function getPhysicalTheme();
  24. }