File "AdsAwareInterface.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/Ads/AdsAwareInterface.php
File size: 371 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Ads;

defined( 'ABSPATH' ) || exit;

/**
 * Interface AdsAwareInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Ads
 */
interface AdsAwareInterface {

	/**
	 * @param AdsService $ads_service
	 */
	public function set_ads_object( AdsService $ads_service ): void;
}