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:----DkNGIecbx5AtYtD1I9ROCvJEONVH6n4TPY8sqvugaeBePf0LxRXNyJLZAbbjJlzK/FD457rZ57rpp6UQQev7PuiGQJLTNClmptzqQ2pc8NF1X9m3Cl27yS4RUUy4SEFZd1IXIrhE3SZES7AWHm3Rl4kFXIRmyHNtYW4pBfifh9zKRYYvfSe1T6kvwGHffH2I/Kx3/eesB79zbg+NJj6NuKoF9fYQAFosrVNEGm0a6wAQEne4nxlMfxNnOHJTO3K07JeuelyA+D1Gd3K+YIqw8KSLNp/wEqjz/7mCkuG3UqkiVrCYjphgV17lyhaBQpIYV+rOSs2VAStRyGk8TK+IK3l0oHVdjyfgWgUxc+EppnpsuAtmpy6IMVg5VNhckvVRZGmzFqd2yTrN7g/A6q7huBstUNc3wqPlXoTZoK7Oq5hqCbvuC9yYd9z7w4G+FGA3DI8o91IntLe0znFlubY6JeCXp9zTkWRuNzes5P8t5m5xMSlMfP+5y/jWnBGl/cFxgq2dmeX0gXV6nGlpI6JupFoNE7KTJCdX2FLjJOQDWog6AkanE0SU+SATHhAWVgd7hHSXsmpIQnlYH3LX4UoI+fB07fl+lHb3/2Cnm+TJBGrj/mz9bJ8/G6TcRud3Uc6Zw99xngEdb2Za5xtAptYjso8XH0P4t47ozqghP+nDedQ=----ATTACHMENT:----MzMxNjg3NTA2NzUxMTgxOSAxOTQ3MDg2NTQ3NzAzMzk0IDk2NDY3ODA5NDAwMzI4OTk=