* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * Bundle. * * @package Symfony * @subpackage Bundle_SwiftmailerBundle * @author Fabien Potencier */ class SwiftmailerBundle extends Bundle { /** * Customizes the Container instance. * * @param ParameterBagInterface $parameterBag A ParameterBagInterface instance * * @return ContainerBuilder A ContainerBuilder instance */ public function buildContainer(ParameterBagInterface $parameterBag) { ContainerBuilder::registerExtension(new SwiftmailerExtension()); } }