Programming Language PHP

Namespace Oro\Component\DoctrineUtils\DBAL

Class TransactionWatcherConfigurator

Method/Function registerConnectionProxies

Total Examples 1

1 code examples of PHP Oro\Component\DoctrineUtils\DBAL\TransactionWatcherConfigurator::registerConnectionProxies extracted from open source projects

Was this example useful?
0
                                                    public function __construct(KernelInterface $kernel)
    {
        // register logging hydrators class loader
        $loader = new ClassLoader(
            'OroLoggingHydrator\\',
            $kernel->getCacheDir() . DIRECTORY_SEPARATOR . 'oro_entities'
        );
        $loader->register();

        TransactionWatcherConfigurator::registerConnectionProxies($kernel->getCacheDir());
    }
                                            
TransactionWatcherConfigurator's Other Methods