1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Container;
4:
5: /**
6: * @api
7: */
8: interface HasServices
9: {
10: /**
11: * Get services provided by the class
12: *
13: * @return class-string[]
14: */
15: public static function getServices(): array;
16: }
17: