1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
namespace AutomateWoo\Usage_Tracking;
/** * Tracks Interface * * @package AutomateWoo\Usage_Tracking * @since 4.9.0 */ interface Tracks_Interface {
/** * Record an event to track. * * @param string $event_name The event name to record. * @param array $properties Array of additional properties to included. */ public function record_event( $event_name, $properties ); }
|