14 lines
299 B
PHP
14 lines
299 B
PHP
<?php
|
|
|
|
namespace Faker\Container;
|
|
|
|
use Psr\Container\ContainerInterface as BaseContainerInterface;
|
|
|
|
interface ContainerInterface extends BaseContainerInterface
|
|
{
|
|
/**
|
|
* Get the bindings between Extension interfaces and implementations.
|
|
*/
|
|
public function getDefinitions(): array;
|
|
}
|