File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/ContainerAwareInterface.php.tar
httpdocs/wp-content/plugins/woocommerce/lib/packages/League/Container/ContainerAwareInterface.php 0000644 00000002012 15154712104 0035631 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php declare(strict_types=1);
namespace Automattic\WooCommerce\Vendor\League\Container;
use Automattic\WooCommerce\Vendor\Psr\Container\ContainerInterface;
interface ContainerAwareInterface
{
/**
* Set a container
*
* @param ContainerInterface $container
*
* @return self
*/
public function setContainer(ContainerInterface $container) : ContainerAwareInterface;
/**
* Get the container
*
* @return ContainerInterface
*/
public function getContainer() : ContainerInterface;
/**
* Set a container. This will be removed in favour of setContainer receiving Container in next major release.
*
* @param Container $container
*
* @return self
*/
public function setLeagueContainer(Container $container) : self;
/**
* Get the container. This will be removed in favour of getContainer returning Container in next major release.
*
* @return Container
*/
public function getLeagueContainer() : Container;
}
wp-content/plugins/google-listings-and-ads/src/Internal/Interfaces/ContainerAwareInterface.php 0000644 00000001031 15155421357 0036713 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Internal\Interfaces;
use Automattic\WooCommerce\GoogleListingsAndAds\Vendor\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;
}