Elao / WebProfilerExtraBundle

Adding routing, container, assetic & twig information in the web profiler
http://www.elao.com
MIT License
262 stars 48 forks source link

Keeping services lazy-loaded #4

Closed stof closed 13 years ago

stof commented 13 years ago

You are instantiating all services in the ContainerDataCollector to get their class. This is a bad idea IMO as it can have a huge impact.

stof commented 13 years ago

See https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php for the way the CLI command achieves this.

Vincz commented 13 years ago

Done. Thx :)