11 lines
191 B
PHP
11 lines
191 B
PHP
<?php
|
|
|
|
namespace WP_Rocket\Engine\Container;
|
|
|
|
use Psr\Container\ContainerInterface as InteropContainerInterface;
|
|
|
|
interface ImmutableContainerInterface extends InteropContainerInterface
|
|
{
|
|
|
|
}
|