fc547e044357d11a9b981abb149bc759a3a0110b
[yaffs-website] / container / src / ImmutableContainerAwareInterface.php
1 <?php
2
3 namespace League\Container;
4
5 use Interop\Container\ContainerInterface as InteropContainerInterface;
6
7 interface ImmutableContainerAwareInterface
8 {
9     /**
10      * Set a container
11      *
12      * @param \Interop\Container\ContainerInterface $container
13      */
14     public function setContainer(InteropContainerInterface $container);
15
16     /**
17      * Get the container
18      *
19      * @return \League\Container\ImmutableContainerInterface
20      */
21     public function getContainer();
22 }