Option.php 526 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Wishlist item option resource model
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Wishlist\Model\ResourceModel\Item;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Option extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  17. {
  18. /**
  19. * @return void
  20. */
  21. protected function _construct()
  22. {
  23. $this->_init('wishlist_item_option', 'option_id');
  24. }
  25. }