35 lines
978 B
PHP
35 lines
978 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Sonata Project package.
|
|
*
|
|
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Sonata\EasyExtendsBundle;
|
|
|
|
use Sonata\EasyExtendsBundle\DependencyInjection\Compiler\AddMapperInformationCompilerPass;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class SonataEasyExtendsBundle extends Bundle
|
|
{
|
|
/**
|
|
* Builds the bundle.
|
|
*
|
|
* It is only ever called once when the cache is empty.
|
|
*
|
|
* This method can be overridden to register compilation passes,
|
|
* other extensions, ...
|
|
*
|
|
* @param ContainerBuilder $container A ContainerBuilder instance
|
|
*/
|
|
public function build(ContainerBuilder $container)
|
|
{
|
|
$container->addCompilerPass(new AddMapperInformationCompilerPass());
|
|
}
|
|
}
|