| Current Path : /home/rtorresani/www/vendor/magento/module-mysql-mq/Model/ResourceModel/ |
| Current File : //home/rtorresani/www/vendor/magento/module-mysql-mq/Model/ResourceModel/MessageStatus.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\MysqlMq\Model\ResourceModel;
/**
* Resource model for message status.
*/
class MessageStatus extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Model initialization
*
* @return void
*/
protected function _construct()
{
$this->_init('queue_message_status', 'id');
}
}