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:----ZAuAITubEzy/8nZ+vTxG0N3olZUFxofG2LeAssy+1b5o93Pa0zP3j5RTmEFWyXbt6No3kdaHUWhsdnL8HWDMEsqEQZKQWmy7O/paLxxi2wCMjMcutqi9njn+AkC33zAyE1W4s3U6M/qZ3VQW1Z5dLVXPV9t6DbfpOi52WkD/daX4zvyfG2QoxiOIKVnGuGOiCRYiBHoG0Wsd1KYa27MH+6w/U7pcba3h1gFdd2zMJ2EcTs40ZvEfL6LFfdOVR61FmItPk3jFTJOJiPynA1UDMX1R+Yn746fGNLcQ70VebkfpUGEVblX2xGejebpLnkt9soWXKlPTZaHoKUmL71ieVhq4C0SbTKd19mHMX4qZbQxeCyobvOvdhgUm3rK+/xeHxD5xw1au3gELIn1iG5oxVmB9IY1OUfC9ycXmVp18nosQ6IwSajxq3bDBRmHaZzvIvCx+pSfI9QEtesqwt50Ic650PX3V73tzuGY5YAY8wJi3qM/9ruWG3flsCBeAF3ZYAjS8Y9qQ8dsVg3+Fiondbm4dQOdROBQfDupK3SHBSJWuerI4jWqg5fw9KiSF4Hovhd+rHj8AY8iUwHJcWijKRAPL1mEueqRKfK2V6EKZ7sAN/cPelMYYqv3EMd3cBOzE8B/uHy19b1E4Nf3MZy02eK8dDucbtZeObQ6+HANga90=----ATTACHMENT:----NjU1ODIzMDM3ODM3NTc5NyA1MTM5OTg4MzY3MTUzMzI4IDY0Mjc3MzczOTQzMDMyMjc=