Sitemap.php 460 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sitemap\Model\ResourceModel;
  7. /**
  8. * Sitemap resource model
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Sitemap extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  14. {
  15. /**
  16. * Init resource model
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init('sitemap', 'sitemap_id');
  23. }
  24. }