* @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); } }