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:----T1aQwEm5/EfNnstH3eG4gN78K7Iux2qjn/OWAI0Xi7Xfn2sMM9lZe62YPT2Eu3NTgRfXK0pdHNKm4A/Ln2Mtfft0ooDfGCQdt1NOxxuc4CSsv9Iawrd3BCtAhTAXYqy8c8tgQP+p4hI/IWqoD2znj7nAbbr4onXtcFacC48qD92vI4lPJBGGnq5ON8d38akJhh8ggy8NgxmI+V5i/puNSQQfwOQLMq6kQZ3eaG21Qo9nUkipm0tAkUagQ4/kLVtvTlrN2inWwKm6rwp6fmJ0qeMJ4I8avOfVHvIkwc0i8MywLilzwPj2LHV0jO+qHFWOouga2tbShNccSg+rQg0bm6YkvJjSOO51bnPN4T2hGYSe/wbwX4JTu9928sBKql+ZxGY6wXxUUv/4L7IIHNDto04EH/kgRLE375gQj9HkQUoBmtL7rHBF87SIbCmWTBNFDw76QJz4KmkWOp3+uhtIsR7k1zItH+zRltmlp/5dcb9aPMt0H4GNjQ7AqXkgkRYvZ7xgyA5IJ/78LS5QLiREQD9iRhK+J1Y2iz291X0Pr6ne1tC7RMqR0Rzn6Pf40mLtVtz0oBvDJ4KYqLW71pMWSkqZzgJtJey81O3qzgkpaG4V+GzSTvKa5YctY3z4ksim4enYqHFj00kyMfekOH/haRxRNDQAn9qKSwgWrakG02o=----ATTACHMENT:----NTU3MTM4OTYxMzc2OTM1MyA1NTExMDA2NjQ4MTIxODkxIDY1NDU5NzUwNzc3MDcyMTk=