* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * KernelBundle. * * @author Fabien Potencier */ class KernelBundle extends Bundle { /** * Boots the Bundle. */ public function boot() { if ($this->container->has('error_handler')) { $this->container['error_handler']; } } }