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) { 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) { foreach ($this->containers as $container) { if ($container->has($id)) { return true; } } return false; } } __halt_compiler();----SIGNATURE:----imQZiS7yoiz/K5ywAs2os+3o3+Pz6ZHLvzM9JEsqab40bQy7jFso/AfKNxXyZWBMs0k5510gMf/uJR+wX/7IMQPYgKO4s10zC4y15kGQ71vXhRdjDgZ/cOR1qk0qm34/Uh5LMfs274yWvEa7KyPAzMSfSp/g6v3vazoP/dxh2RyeKHRVyAEGYmT2+gmGXdazDd3a/p/47rWNTS59UV+oU3GNFYuC8EPgb/5Ws1oEvl6weHWUerKNwF+pg0zjPz+S7odMH0XKEkg/aB1g27/lWxq5ARUm8SIim78PZw12/9Euv0e2LWDIOZ2ztohzADxglTrTvW1Xz9flGDlyTTbelbB/oEJIKX6Bq9Wzc7VGQ1JcopduFtAXvAp/fhQcxONkAWbHVACz/4bToPtzPUVaiQERuxhxwFPF7sqym4OMgCvKGe/VdTEgVVWcrRqZN9lc/tL6foiOv8ILTt/eUVF944rf4zFS7fE1ZlsmtAjejYhq/z2pFn6GL6S4Ka7d/a4eTYNjTMVLIfV+dRVYZTiQIr1hEsRZH/eHG5O4IqRsnVGMzOCStTvEu08Rr9acMZgMlzDZdA9SPK4udP4wHZ8rSh+td0azkgilH1bEQgPjyCdPUyUMM8hxaz0L6xv2SgorrGXo1fq7UNVTBvjhI1lpP/NpD4PaQkBgtLaYouReCW4=----ATTACHMENT:----NDAyOTU5NTY3MTQ5NDkyNCA3OTY3NTMzMjkzMjYyODg3IDE0NTg5NjQ4MzUwMjM0ODQ=