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:----cNGM8OHIZ2O5lNsj8U2aCZSBGzS/dlGQLuogT2QMYx7FkBwtyqUzx4ceVxxseAotLkU1i0eLK3YhetiLTu32eqswZuAdhPQjxZT/neyA4d81ArnElPMfLC7lk8osLn5T2mrrJNIz+ANooxdPxrU2I/qTkEnSzSGXGXOD15j5d7v7aq8oom7e/fM4aUAJS8pwSub7NSesKL1J12UnDCIyWXvw2zskE+L6uBpqzoOlx2zhK02qwf4ePcBT0v0Ra1I7wFl+PBbgt3njzRwSh6BlEnUfXU6mtF2BgBvXUQSnvuc01DhDCKXfX7i5RhFoHlDPdo/eRX2Sdoo1K6mV8ZpPLeY8jSdnDDll1JrWydV8p9X9QtzOIEbZeczlKtwFXFsQhF5OBpC6CjZ0f5LTHKDDLeHmyqwtGBUCmWwUGt8kjWh+2wi/NpMsd5nLTgF4T5sdn2JB51Yy8UkP4CGUFUcuYv7sCz0rLiF5dRMBTpiH0oY9sm+Z4fKU78maSqIcNiYTaVgeWGqU3sJ7HRbkFJREIhoZ/794txj5yLlONWnl7eYzc8ZCvcddBO3MTOoFILvo5A2eimHZylgK8u7yDTFluiWTD0ojwWGPiB00/QI3fZ7vdcmCSN8QtLOCcruFMSKvIae8Y8X688yN38PWj0X5y8R/m3KGcL7Bq4UYhsJVOuM=----ATTACHMENT:----Mzc2MzM4NTM2NTM1MDkyIDUyNjA5NTA2Njg4MDM0MTYgMjA5NjYyOTY3NzUxMTY2NA==