thiet-ke-noi-that/wp-content/plugins/wp-rocket/inc/Engine/Container/ImmutableContainerAwareInterface.php
2022-02-18 19:09:35 +07:00

23 lines
494 B
PHP

<?php
namespace WP_Rocket\Engine\Container;
use Psr\Container\ContainerInterface as InteropContainerInterface;
interface ImmutableContainerAwareInterface
{
/**
* Set a container
*
* @param \Psr\Container\ContainerInterface $container
*/
public function setContainer(InteropContainerInterface $container);
/**
* Get the container
*
* @return \WP_Rocket\Engine\Container\ImmutableContainerInterface
*/
public function getContainer();
}