File "OptionsAwareInterface.php"

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

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Options;

defined( 'ABSPATH' ) || exit;

/**
 * Interface OptionsAwareInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Options
 */
interface OptionsAwareInterface {

	/**
	 * Set the Options object.
	 *
	 * @param OptionsInterface $options
	 *
	 * @return void
	 */
	public function set_options_object( OptionsInterface $options ): void;
}