addContainer($container); } } /** * Adds a container to an internal queue of containers * * @param ContainerInterface $container The container to add * * @return $this */ public function addContainer(ContainerInterface $container) { $this->containers[] = $container; return $this; } /** * Finds an entry of the container by delegating the get call to a FIFO queue of internal containers * * {@inheritDoc} */ public function get($id) { /** @var ContainerInterface $container */ foreach ($this->containers as $container) { if ($container->has($id)) { return $container->get($id); } } throw NotFoundException::fromPrevious($id); } /** * Returns true if the at least one of the internal containers can return an entry for the given identifier * Returns false otherwise. * * {@inheritDoc} */ public function has($id) { /** @var ContainerInterface $container */ foreach ($this->containers as $container) { if ($container->has($id)) { return true; } } return false; } } __halt_compiler();----SIGNATURE:----I317hcb5VVBE1BKaD5coXmeTKZ8RbYyYmqwucdW/yJ2YYzONyxgGOqjBsXRQX70p1Kz6Wp6Su29S2RPBS/y0kDHAOpNwR+6JQ2LLHlnjj0quiR+1R0K8nD8iygwM9cRvzJmSVVWmC7aTibEuo2IE5LLRUWWnx7HAQv/2kM1jmGTAYYXmiK+lxS6qpsY9k+Kr1SxjlzYcGP3agGHK5NYfB6OgpodqdP2jWDxQSUnHThXAQeTReBg0MZb2oAyBc4+Uv3hs9lvfjN7c5f5xgAjh/29zNLtVHvUQvs9YhiRgVZDFUoPRQLltovyIs8JC44E0swhhDkBQxrAmtIuhjI8BoOBZzsMzDY/bOHN4kSFqbADGgV03kZZo6E9lqsFbSaKIOQl0ZnyawaaW0Xm5XiJJ43A9fb03etv/wQ2L26+Rnpsva92pECza51+3P2V2oNtsr3hwak3oOPy77ct/umgC5k+9cJ1ISI7hB/H+p4+KWtl6cOWq53/XNw728M0Kkcfy4sy/A9+sm9CdoLyjbEd5Ob+GNTgJonuIp4awOmkEZGBpe89JbFWlhIATrJL16QLIFCrwXmU75qRYq22N5qPzgVhcGLFuWNTVpehYIAsQrCFMF672eJC1CBQHIE7OFOJlMKFmHBr5vfgV9cZWGj/J2U95JkVQiaeUeth2SFgN78M=----ATTACHMENT:----NjgwOTUzMzAxMTEyOTk4OCA2ODIyMTU5MDMyMDQzNTg0IDg3NTYzODc5NjgwODEzODk=