File "TracksAwareInterface.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/google-listings-and-ads/src/Tracking/TracksAwareInterface.php
File size: 393 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Tracking;

/**
 * Interface TracksAwareInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Tracking
 */
interface TracksAwareInterface {

	/**
	 * Set the tracks interface object.
	 *
	 * @param TracksInterface $tracks
	 */
	public function set_tracks( TracksInterface $tracks ): void;
}