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:----gPwm7RIZY5/6PthoYnKl0xx5wr1ueZn/BzBKQkMcz5WzDW4LStMW/Y2iwpGLwHnTscJ5qFnaDcsNozcRMOaeeq05M8D7ESVNE7that8fV5hlJOeLizX3L+qdG+gBOFCGValEnQxhgXp009tPiGskoH1GZ+/u6C6ySumRKoVkmfKHK9iV26ZtoangsgYH19h8iNEqSCTUdaOH38c+BEytgyTRY71I322NqS7zIw7Y/ZIf0uIC/DNz/u7PXmn50embFzeuq2F4vv7NywJE48FbMDqF1GA92AXLezyibd3DCEgLjJKDrDCebpi0uL946EyUZCHoELqiEG8U0RqPJ6e7M07Z3RLzCg/y+GqVNb+4QO/mpAIwqYRUgOdEq1euXNuiyYa2dqf162iYLFR75V1Cecz/1vVu51UhXxOrAZXwhK8bEW9fCG4+uDWTCSEDdQcalXdb3w9srG8oIzCVY5m5swnVeWSUNYYsyqoL9QBwIHo4SBjIjh1Cvciek4wyuRu9y94oMYKq1oyo1p5A8b3HC4uBAv+hQ1kG4/h91dpciY+jwlmxvmXNXafsBiKYt5GU2VpJVDcnu6WG44dTENrfu3d/hoLK8igctpKeBDpaKESYMnHF0Q+zBWmMryStT4AJJMuT03JANLOQdUYlOJdlHkPwH8ZXiGVoSETa1zzuXiE=----ATTACHMENT:----ODUyNzk3Mzc4ODEwNjU0OSAyOTc5NjM5NDQ4MjEzODQ3IDEwMzM1MjY1OTU2OTIwNjQ=