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:----EH79Q/J0YnwwyNVN+FiMP2/PQlu7o8kYPqK+5hCRizLpXKbK2sTWoc6JO026eIg7tHKDf2TJEND/1ohumKTjBB4xNRa/zbuUjPtFqTl/xE88rNwri1oBa1EjRdIXGZ6jK2Eu2cXESYfd8bnAHzEKtkPexSQrOS/ixXzyi4xNZJrkiXPchabT6u1FZnNvtxWF1UHunU0iMZhMzTsZ+/oqylyE+AaMRK4V8rFkLj0VE5Y8beG88tuy8mYA2mzKdCkwSX8yX1O5+Zt/MV+W95VEVHfeOHmKTQQbZY6VlgXnHlGwCqlNIFKD3NYA1lik+hcTz88/BzHUQlz4iHDU+KB8mmNE5MqYvdSalOEqq70CUfmhNP+74qpFt5n7ilkg7o+xLOBmrt76VTDO6lh0/hE1Q1fsldXB9deXB7zV29V0mIFfZWHOWofpIQoqanwnzvb5zTpdrN5Q9PFVNLixo+z0E5CkRfMCxqlcri1iT2Al3HLo2QkF+h/GJo2vVP/WtiRqD6B4hROHuJ3Ot105Q8cIXGcrYUN12xMydeyU7a7qXfkz0LEzdO7ifBvNxfJ7p/KUh6DeFRXFXANEIFbeeYIUeE/EySrXSwJhBEx8wWujLzeX1ZaIE1pI5L4MZ5x+vNZ0J4sRlu/tob6V4JChT0nJBTeCChjU1vD0KEubU/gMhjQ=----ATTACHMENT:----NDkzNzUzNTgxNzcwNDIxMSA3NDUzNTQzNjYzNzE3MzQ1IDM2MDg3NzE4MTI3NDg2MjE=