| Current Path : /home/rtorresani/www/vendor/magento/module-analytics/Model/ |
| Current File : //home/rtorresani/www/vendor/magento/module-analytics/Model/ExportDataHandlerInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Analytics\Model;
/**
* The interface represents the type of classes that handling of a new data collection for MBI.
*
* @api
*/
interface ExportDataHandlerInterface
{
/**
* Execute collecting new data for MBI.
*
* @return bool
*/
public function prepareExportData();
}