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:----Q2iATEjj3mLYtAhFR5iaaCL1V0onuOyEPncKsLl1WK6PV/Zwe1tAyBYVqXneHgw2tpziGO0nLT46OJhybih5h2zzAK46cO8VrDSCvt8lHk/xcV4EeGs9cJqr3AarZUKtaJqEMrJTI5ZracGIeOpS1VN5iwJclf5Z1eiOBgzFhIQ+zvjQDeBsCbzJwznZKyhKcU3V/ZMINbRncghXaGenXiU0KO8gUFdgbA4p6Zr0Gza4UI9cTJ2KHreYJEJuWkQFStjN3ymTWCq5I3Qw3PAXBskJHFU5YP5+ZMMtJZdpfO3T+6uX7t2VACUgr8Im8QE20DYIvCPz1SjWLQEZ84YKQsFZfVb8L7PvaoIGAFD5zNGQlgKz+ePYZEXYoL/xVxFcPlFicMiFiCTHSNzcNlaVh/PSKQ1VqKIp/xFXWB6ZMBJf/VVxE9Cud4mVjaPYzLEARa+gPaTlN3pUuMDme6ILWGgVDAfPApeAKxV6pzhmkZ2hcyo1NIZf0vOzm2zmk6oq3ph8BfLZQX+WKPwodYTqmgwzXDsEE7KMLLFWA66+hFLIusrzxzQ6s71ovtIZuQPCeCI2eJU/YDl54DRTVHPihhA3+b6CUU3nb/R9qIitv6DkrViYcgPY2UY5CP95Ulg5egrx5zSI9ro8Kw2q8ohQibma2zeze14eRox6YjeAn+0=----ATTACHMENT:----NTA0MDIyOTcwMjc3Nzc3NCA1MzA1MzkxMjU2MTIzMDQ3IDg2MjIzNzkzNDc1NTA2NTg=