You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VictoireI18nBundle has a non-empty boot method, which may slow down Symfony2 application boot.
class VictoireI18nBundle extends Bundle
{
/** * the function add a cache driver to get and track i18n entity */publicfunctionboot()
{
$driverChain = $this->container->get('doctrine.orm.entity_manager')->getConfiguration()->getMetadataDriverImpl();
$proxyDriver = $this->container->get('victoire_i18n.i18n.cache_driver');
$driverChain->addDriver($proxyDriver, 'Victoire\\Bundle\\I18nBundle');
}
in Bundle/I18nBundle/VictoireI18nBundle.php, line 15
Posted from SensioLabsInsight
The text was updated successfully, but these errors were encountered: