File "GoogleHelperAwareInterface.php"

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

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Google;

defined( 'ABSPATH' ) || exit;

/**
 * Interface GoogleHelperAwareInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Google;
 */
interface GoogleHelperAwareInterface {

	/**
	 * @param GoogleHelper $google_helper
	 *
	 * @return void
	 */
	public function set_google_helper_object( GoogleHelper $google_helper ): void;
}