<?php
/*
* This file is part of the EoHoneypotBundle package.
*
* (c) Eymen Gunay <eymen@egunay.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Eo\HoneypotBundle;
use Eo\HoneypotBundle\DependencyInjection\Compiler\FormCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class EoHoneypotBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new FormCompilerPass());
}
}