File "ContainerAwareInterface.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/Internal/Interfaces/ContainerAwareInterface.php
File size: 486 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Internal\Interfaces;

use Psr\Container\ContainerInterface;

defined( 'ABSPATH' ) || exit;

/**
 * Interface ContainerAwareInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Internal\Interfaces
 */
interface ContainerAwareInterface {

	/**
	 * @param ContainerInterface $container
	 *
	 * @return void
	 */
	public function set_container( ContainerInterface $container ): void;
}