<?php
namespace Ksante\EmailBundle;
use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Ksante\EmailBundle\DependencyInjection\KsanteEmailExtension;
class KsanteEmailBundle extends Bundle
{
/**
* Overridden to allow for the custom extension alias.
*/
public function getContainerExtension()
{
if (null === $this->extension) {
$this->extension = new KsanteEmailExtension();
}
return $this->extension;
}
}