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:----Mo8PWl2ztY4aPG8YBVcakZ1h/SxQVcvuE15UJdW1z6StJvHsXwTWgpPK8BtesrfrKQupZIbiv+aIz57S9WLx4lsHRN03mYRg5CKpJS8eL+Fai9LIrjA5/FiLE0PkcKeGCGyjYuTazhT8ubbaInS5myvOzS/ZUHsB4sRRunsyszQpEyForjkOLTENluacJkOk/+PIRgP6lZmqVxkB5XZkFg9ADSI0bEdHr1nMK4UQwFgvyEHGeUiNggXt+5DKouKs/OkJH0UfhEt90J8/o1EUIDMfaOPHriO4olBTYWTyIP6u8RQPffTK77htQE4V9/Ywxrj+T4UoiR629MDW7RpTrW/wEARMSZRbWf+pZqjpUAEr6xrwKzRvgvAK6IG9PBTIER4F7az7QYod+rbFEsLSUmrkXJOZQxqMp2WQAij+S3bzbmhD4YXk/unLTTg9Y0SFlyhehEWLrtINrjqJA3ZjM6+3ForPLRtpyLYBrzrEtLvMFQ66Ze8znkcLPEsjHtiyPclcWoeJYiQES41yuwwuLnRhaSWdBJmwT1DO+qG4e801k1R21lLtYKU17MRSvaV0BTazHc6QMZp7zhxfF7vQgOSg5Wg6wYYwksYQAiRG1B3Awy3VtcnWGCHXawtcTMF2+3QG+s3zCB/S8LYBx94ykWSwGZo3VQ5wa8bjOxiRppU=----ATTACHMENT:----MTQyMTA4NjYyOTg1MjYyMCA4MDEwNDk4MTU0MDUyMDYyIDkxMTA0ODY1Mjc1MTEyNjE=