10 lines
164 B
PHP
10 lines
164 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Faker\Container;
|
||
|
|
|
||
|
|
use Psr\Container\ContainerInterface as BaseContainerInterface;
|
||
|
|
|
||
|
|
interface ContainerInterface extends BaseContainerInterface
|
||
|
|
{
|
||
|
|
}
|