<?php
namespace FakerContainer;
use PsrContainerContainerInterface as BaseContainerInterface;
interface ContainerInterface extends BaseContainerInterface
{
/**
* Get the bindings between Extension interfaces and implementations.
*/
public function getDefinitions(): array;
}