| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-reports/Model/ResourceModel/Event/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-reports/Model/ResourceModel/Event/Type.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Report event type resource model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
namespace Magento\Reports\Model\ResourceModel\Event;
/**
* @api
* @since 100.0.2
*/
class Type extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Main table initialization
*
* @return void
*/
protected function _construct()
{
$this->_init('report_event_types', 'event_type_id');
}
}