Security update for permissions_by_term
[yaffs-website] / vendor / container-interop / container-interop / src / Interop / Container / ContainerInterface.php
1 <?php
2 /**
3  * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
4  */
5
6 namespace Interop\Container;
7
8 use Psr\Container\ContainerInterface as PsrContainerInterface;
9
10 /**
11  * Describes the interface of a container that exposes methods to read its entries.
12  */
13 interface ContainerInterface extends PsrContainerInterface
14 {
15 }