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:----Mo0IZbjx8GsmGHMXGoZVsTSLP9nyUWwh3okCvNP6JLMKlsAmxxzWrq/kwpxqJ91LuPI/h6IadKCbXFKEHZWQzhWEzLNVtd6ypiotsrlzcXhcPmxa2094GJ/CNHt+mauH/ssBAn1nToCeMONaPhb/o8Gdf+ctlmtvB2uUMeAy5MA+XHyfii9i0dFi46FKuoPmj2wWLbq14M0wZFXQLR+I+rVGM17+57KzdoFARIe27cPbeaMRZ9t6hZ/XyydbgSJPh2RRBv1qi4SXuTyI6vnTE/f6xF6qofiEzkvSIsy4uT1FfvEx2lC1WxUYZPkeEOuavnqAWxPSEvM82ABp2hJIiB/xQmskqzlJuB8xBeiU/aw8IIuIqckRPDr9nbdl/QTHcr3ahPWJOot4bhAugQSdH4DGa+zNRKXQmnnR5/wabCQAQYL8nbspAAVLolQWZU9ekVT/4QvZcE4AP/l7hA4a4cI0UA5ZDlEOZb9+gHKp1T/DqV5ZkZQs9xPS5B0tWQKTQtV8CGeUCr5UBWGOpek9jVDlp7SzVn2RaXPQY1G6HbXHdXG8HYzrZSxfEtLv5MSsxjiktl6oWi8xFuVgo0M1LHaCBVpzZ8i3sjF5xNOGUUUuTmzSDPHneVa/1YfauzWZfOex4z5by5cDzgcKP0tyRB/ECx3HLCgsT3gcJx6OFhA=----ATTACHMENT:----NTk3ODA0MTY4NTgwNjE2MiA5NzYyNjg5MTk5NzIxNTk4IDg5MjY0MjM5ODcxMjg0NA==