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:----GlhiZcKrMaDikCGgTGmcSZX4xx0FZ2RHLPRSPVbzcwuZnORCV7ldmwQhdUCM6i6dklvNt0el2m7bQj11FJaG+QnFQ2Fn0zN4rvipnMz2FTr+jpi7iV2PZg6Tsnj1UXFuRbE+YvMUjWAOnpH0D7UZnQyDALUsxfkSJvTyd1LhWB/7ReM5JWqic8f1UAs2RPir9fG+foTiNPwKWVPVtts5OUlezsS0DozhuR5O2F+CA70owEtVc2IQdpRIPEBHkdpz03yTlvypHT+X62lh0aYbNqLbzQ1hNhM04J+7eBPhyzLVA1fXlDyXLCzYt4xotQDwmWdRm7gCJJEUgfuPKtjUjSWjLVOJ80BVj+ACRqNSdk0sN2k9sCZN+MxtjGPrl+vyF7hXJyrD4hfgcmW9yeC1BjYmUrJsAacy2wKQf9DIiX9vxSK4l//cHzh9kGqJ/Qv3+MKZ24s4fL8ZVMrf2oOUOcXAEb0UzyOGfDtJmaH43WbmrNdSDIlAcSxWlksK+oMnmHR7fnU4AM87DEA3Ui0qqHlZ0F8EvkHids7NWCT/c2ARrJWNKddNpQ+zdCZQlHg6Xu8529J+ZyisMWwurJ3GmObHZsY5Qg9DAXY6+VaCcH2Pb21ayh2lIhjPS0+D1nI1+3ma0s5L7ps0HtARkOMPZSxGL0Wf288d+mD3bQsbFnc=----ATTACHMENT:----NTY1MzA1Nzg3MTI5NDk5MSA2MTg0NjM2MzI5MDkwOTAwIDIwMzM0MjAyOTk2Njg4Mzc=