| 1 | <?php |
| 2 | /** |
| 3 | * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) |
| 4 | */ |
| 5 | |
| 6 | namespace Cybot\Dependencies\Interop\Container; |
| 7 | |
| 8 | use Cybot\Dependencies\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 | } |
| 16 |