Files
budget_analyser/vendor/fakerphp/faker/src/Faker/Container/ContainerInterface.php
TiclemFR 884eb3011a 🎉
2023-12-29 16:00:02 +01:00

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;
}