1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Model\Rating\Option;
- /**
- * Rating vote model
- *
- * @api
- *
- * @author Magento Core Team <core@magentocommerce.com>
- * @codeCoverageIgnore
- * @since 100.0.2
- */
- class Vote extends \Magento\Framework\Model\AbstractModel
- {
- /**
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Review\Model\ResourceModel\Rating\Option\Vote::class);
- }
- }
|