Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-review/Model/ResourceModel/Rating/Option/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-review/Model/ResourceModel/Rating/Option/Vote.php

<?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');
    }
}