1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Model\Rating;
- /**
- * Ratings entity model
- *
- * @method string getEntityCode()
- * @method \Magento\Review\Model\Rating\Entity setEntityCode(string $value)
- *
- * @author Magento Core Team <core@magentocommerce.com>
- * @codeCoverageIgnore
- */
- class Entity extends \Magento\Framework\Model\AbstractModel
- {
- /**
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Review\Model\ResourceModel\Rating\Entity::class);
- }
- /**
- * @param string $entityCode
- * @return int
- */
- public function getIdByCode($entityCode)
- {
- return $this->_getResource()->getIdByCode($entityCode);
- }
- }
|