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) { 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) { foreach ($this->containers as $container) { if ($container->has($id)) { return true; } } return false; } } __halt_compiler();----SIGNATURE:----SFtwjnv88YgaMmlSFuup8Nil3u1nCTEySKBtaD05E3s6AbApzgrhwhn8G9tMuPc2vFryBbWRzMcEvqaBnlh+UzALW5VTY5/ekXVuVnNZAFi7Ng/dIC71irxlk2X5fDDZW6mMbNPiCtj2YcMWyQfxIzWYAERJ5zcrtRUZGZDO14qAr8Z1WOpZH9sfvmycLW2VWUv196s+TO0+wqlYViEJlbgPJPEyjwvfYi9semzzTfjYQS5QF7Zb/L44NIH1XSBQ+Yxz0RwUlUBP3jKIvmkjFJf9OOzBYwxv/iKOTyrIOIxAdclRNFEH8l1W1iax1Eic45nmwXdVDyrbCJSSSwHpGkUhZCgtPU9Bs8ZrSCrtEj4jisFVrXWib2Ns8wvuPMWBjoHVb2molfetsWfS7HPK9CLTEUSPd03rqUM1rE4oN5utyTuhQtFfXrPAg/unqxQ5Np02lr9DuxxijvpAPVHwyeygyQ8kobO2/euWcBSqbQrwY1YebsH33kHksIfXd85I+HeC51L24CLJG4KF3aHV10b7R0CjtoUi/DzcReVMqRe/CeIMJRN06OfsJAiadKtNR4WkCFs9ApEXIDjR3G3GcSamQS+HQ67/N77TnfqenAKDsTOsEJJ3k1np8DzLLDOA3LFl/718BMd4GeRoYSb4rzoDjJpnufGCZf9xSKJIJFs=----ATTACHMENT:----MTMxMzIzNTQ3MTU4ODIxMyA0MzU1ODgyMzcxMjI4OTczIDY5MDAwMjAzNjA4OTI5OA==