give
/
vendor
/
vendor-prefixed
/
fakerphp
/
faker
/
src
/
Faker
/
Container
/
ContainerInterface.php
Container.php
1 year ago
ContainerBuilder.php
1 year ago
ContainerException.php
1 year ago
ContainerInterface.php
1 year ago
NotInContainerException.php
1 year ago
ContainerInterface.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 07-August-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Give\Vendors\Faker\Container; |
| 10 | |
| 11 | use Give\Vendors\Psr\Container\ContainerInterface as BaseContainerInterface; |
| 12 | |
| 13 | interface ContainerInterface extends BaseContainerInterface |
| 14 | { |
| 15 | /** |
| 16 | * Get the bindings between Extension interfaces and implementations. |
| 17 | */ |
| 18 | public function getDefinitions(): array; |
| 19 | } |
| 20 |