Rename FOQ filenames to FOS

This commit is contained in:
Jeremy Mikola 2013-03-27 13:58:32 -04:00
commit 4aa8fefe2d
2 changed files with 0 additions and 0 deletions

19
FOSElasticaBundle.php Normal file
View file

@ -0,0 +1,19 @@
<?php
namespace FOS\ElasticaBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use FOS\ElasticaBundle\DependencyInjection\Compiler\AddProviderPass;
use FOS\ElasticaBundle\DependencyInjection\Compiler\TransformerPass;
class FOSElasticaBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new AddProviderPass());
$container->addCompilerPass(new TransformerPass());
}
}