1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Container;
4:
5: use Closure;
6:
7: /**
8: * @api
9: */
10: interface HasBindings
11: {
12: /**
13: * Get services to bind to the container
14: *
15: * @return array<class-string,(Closure(ContainerInterface): object)|class-string>
16: */
17: public static function getBindings(ContainerInterface $container): array;
18:
19: /**
20: * Get shared services to bind to the container
21: *
22: * @return array<class-string|int,(Closure(ContainerInterface): object)|class-string>
23: */
24: public static function getSingletons(ContainerInterface $container): array;
25: }
26: