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:----b2sX2JlSdRPoVsgCyliHpaN7gMuLqd2APwDhrkFPql2EiYAQxXL+Y6858MDfrmaeJvKwEJfRq0aXuw9DcqY/1LkvGZOluizevcs+T/yppbPHJj7bYFuAmbIACccWDnta3deTRPEnV+sS8PDaN8RUiJdCINPnTS6040W2KuKZuaQGO2NqLMAJNI9PgIH3rhpLYIkEx27r/OXp5+NpKnwzTPTHjggqRVwvuAIAg1IKKadVcEY1ody56VAJydZ+gjnfYlxX9trTbO1HTBSS+RMxWa+E27sWQ1FMdddEUYJ4r9l/ytrT0q2zEIos6MNEfjpp14DqjkZasy6mmbX00XGcO8JUvFOwFPQ6aJi6VjXKNCL7TIqsJzlHTZt7fxxdWbTNY/0jkcZh0tCOTDI35uZwYD2OqHzpPw3UqBz1fWAEYTfaCpcBXG01E2ZsUQsJDRb3CeHrht4aYZGpm8R1MIFTmdiNnaPqzCJMZJfAM9dcYIERk1T6DEfB0lzT+lLphclRw+gc1MjGdTAuguBJ+XpfpY+7TJu2KOJkTYVgTmusZvXlHeTMMzKdjSGiOQ4+66nrkmbsmwMvqGvrE1PFKX+JMhXo3+EbUFh13wKlF9wzI+Zv66+2Q6ytBal57ggXuHgXcBNA3DJUVMijBgSZNivsne+gGfIv4uaV+hjygXBOiHs=----ATTACHMENT:----Mzk2NTkzMTkyNzIwOTUxNCA5NzcwNDcxODM1NTIxNzc3IDgxMDQxMjEzNTI3NDIwNTU=