Link.php 737 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Widget\Model\Layout;
  7. /**
  8. * Layout Link model class
  9. *
  10. * @method int getStoreId()
  11. * @method int getThemeId()
  12. * @method int getLayoutUpdateId()
  13. * @method \Magento\Widget\Model\Layout\Link setStoreId($id)
  14. * @method \Magento\Widget\Model\Layout\Link setThemeId($id)
  15. * @method \Magento\Widget\Model\Layout\Link setLayoutUpdateId($id)
  16. */
  17. class Link extends \Magento\Framework\Model\AbstractModel
  18. {
  19. /**
  20. * Layout Update model initialization
  21. *
  22. * @return void
  23. */
  24. protected function _construct()
  25. {
  26. $this->_init(\Magento\Widget\Model\ResourceModel\Layout\Link::class);
  27. }
  28. }