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