automatewoo/includes/Usage_Tracking/Event_Tracker_Interface.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

24 lines
454 B
PHP

<?php
namespace AutomateWoo\Usage_Tracking;
/**
* Interface describing an event tracker class.
*
* @package AutomateWoo\Usage_Tracking
* @since 4.9.0
*/
interface Event_Tracker_Interface {
/**
* Initialize the tracking class with various hooks.
*/
public function init();
/**
* Set the Tracks object that will be used for tracking.
*
* @param Tracks_Interface $tracks
*/
public function set_tracks( Tracks_Interface $tracks );
}