1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Container;
4:
5: /**
6: * @api
7: */
8: interface ContainerAwareInterface
9: {
10: /**
11: * Set the container that created the instance
12: */
13: public function setContainer(ContainerInterface $container): void;
14: }
15: