123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Model\ResourceModel\Rating\Option;
- /**
- * Rating vote resource model
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Vote extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
- {
- /**
- * Resource initialization
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init('rating_option_vote', 'vote_id');
- }
- }
|