<?php
declare(strict_types=1);
/*
* This file is part of the NucleosAntiSpamBundle package.
*
* (c) Christian Gripp <mail@core23.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nucleos\AntiSpamBundle;
use Nucleos\AntiSpamBundle\DependencyInjection\NucleosAntiSpamExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class NucleosAntiSpamBundle extends Bundle
{
public function getContainerExtension()
{
if (null === $this->extension) {
$this->extension = new NucleosAntiSpamExtension();
}
return $this->extension;
}
}