Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / league / container / src / ContainerAwareInterface.php
1 <?php
2
3 namespace League\Container;
4
5 interface ContainerAwareInterface
6 {
7     /**
8      * Set a container
9      *
10      * @param \League\Container\ContainerInterface $container
11      */
12     public function setContainer(ContainerInterface $container);
13
14     /**
15      * Get the container
16      *
17      * @return \League\Container\ContainerInterface
18      */
19     public function getContainer();
20 }