1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Container;
4:
5: /**
6: * Implemented by service providers that are instantiated once per container
7: *
8: * @api
9: */
10: interface SingletonInterface {}
11: