Vote.php 528 B

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