src/module-elasticsuite-tracker/Api/EventProcessorInterface.php
<?php
/**
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Smile ElasticSuite to newer
* versions in the future.
*
* @category Smile
* @package Smile\ElasticsuiteTracker
* @author Aurelien FOUCRET <aurelien.foucret@smile.fr>
* @copyright 2020 Smile
* @license Open Software License ("OSL") v. 3.0
*/
namespace Smile\ElasticsuiteTracker\Api;
/**
* Tracker event log processor.
*
* @category Smile
* @package Smile\ElasticsuiteTracker
* @author Aurelien FOUCRET <aurelien.foucret@smile.fr>
*/
interface EventProcessorInterface
{
/**
* Modify an event before it is inserted into the queue.
*
* @param array $eventData $eventData
*
* @return array
*/
public function process($eventData);
}