%PDF- %PDF-
| Direktori : /proc/self/root/home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/ |
| Current File : //proc/self/root/home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/ChamiloCoreBundle.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle;
use Chamilo\CoreBundle\DependencyInjection\Compiler\DoctrineEntityListenerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* Class ChamiloCoreBundle.
*
* @package Chamilo\CoreBundle
*/
class ChamiloCoreBundle extends Bundle
{
public function boot()
{
// Add legacy calls.
}
public function build(ContainerBuilder $container)
{
parent::build($container);
//$container->addCompilerPass(new EntityListenerPass());
//$container->addCompilerPass(new DoctrineEntityListenerPass());
}
}