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:----n53HesGV6rNEcj87mjSEpDKVhe6gQES6E8wAsdaslmjRuiDg301QAEDrfFh9cUZeUA28fyx8sWabfYppHYfA9bPAp/kkMrBU2Cdk3LA/Fkn/3u5QkYIO+uWiKjxSnr9B+qnH655gTbe4CgQjLB0DBsy4ZF5U8qqDfCm0KtlLC153JChOARxoUt14WnMiLKLmd3OLygWrwD7yi0CuvBbcOCtsJQU2FwZLtatWZYuO7a1jKEx0A3pdbBV4yY3YpphQrmWrGCma0LptuuiOTfv2Yv36tRmeTFFtdTlNcXIk48L0zTCWrHPRpCyg1IFJ4lZcV7i0kgyfr+1EaJUJK3gKlmDmJ6lxsO7u5DEbhcdD1tuNl1wUiwlYI8zccd3CsuqP/I0NoLgnIaZiia8NSIWE1sbDzJ9zBzjgCtfJDHZISJ8MmOgdKVZSzNhk6YT0P9kTJaPt3xw11T1rcJcmJJohmXmLxliu1Dpy6dsDD1ToBtAn5gcbdqoEK3eCaC6dBYq/274BogXCBYZP4AJXpZuNdGVNt7ekvKe2Q/QDwPq0VTnxMhIuRgbVi0w/TsvRHzhPclvYxbFMz8muLez80zSrGP99DeBrXx9gBzK4aRqxgBPeKf2dRMeP//aaZ6l94yPw4QEBhsY3INPCX3UWzCc2C74eu7lbeJX5D91viWFyvz4=----ATTACHMENT:----Nzc4MzkwMTc5ODAzNTMwMyA1NDQ0MjI4ODAxOTQ5Mzg0IDE5NDgyODMzMjE4ODUzMDM=