Data.php 426 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Theme\Model\Theme;
  7. /**
  8. * Data model for themes
  9. *
  10. * @method \Magento\Framework\View\Design\ThemeInterface setArea(string $area)
  11. */
  12. class Data extends \Magento\Theme\Model\Theme
  13. {
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public function getArea()
  18. {
  19. return $this->getData('area');
  20. }
  21. }