* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\SwiftmailerBundle; use Symfony\Bundle\SwiftmailerBundle\DependencyInjection\Compiler\EnsureNoHotPathPass; use Symfony\Bundle\SwiftmailerBundle\DependencyInjection\Compiler\RegisterPluginsPass; use Symfony\Component\Console\Application; use Symfony\Component\DependencyInjection\Compiler\PassConfig; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; /** * @author Fabien Potencier */ class SwiftmailerBundle extends Bundle { public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new RegisterPluginsPass()); // Older supported versions of Symfony don't have the parent class that EnsureNoHotPathPass extends from. // But they don't have the hot_path optimization either, so not being able to register our pass is not an issue. if (class_exists('Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass')) { $container->addCompilerPass(new EnsureNoHotPathPass(), PassConfig::TYPE_AFTER_REMOVING); } } public function registerCommands(Application $application) { // noop } }