| 1 | <?php |
||
| 10 | final class DI |
||
| 11 | { |
||
| 12 | const ELASTICSEARCH = 'elasticsearch'; |
||
| 13 | |||
| 14 | private static $containers = []; |
||
| 15 | private static $singletons = []; |
||
| 16 | private static $initialized = false; |
||
| 17 | |||
| 18 | private static function init(): void |
||
| 25 | |||
| 26 | public static function bind(string $key, $abstract, bool $singleton = true): void |
||
| 33 | |||
| 34 | public static function make(string $key) |
||
| 52 | } |