Debugging a Class Loader
Edit this pageWarning: You are browsing the documentation for Symfony 2.2, which is no longer maintained.
Read the updated version of this page for Symfony 6.1 (the current stable version).
Debugging a Class Loader
2.1
The DebugClassLoader
class was added in Symfony 2.1.
The DebugClassLoader attempts to
throw more helpful exceptions when a class isn't found by the registered
autoloaders. All autoloaders that implement a findFile()
method are replaced
with a DebugClassLoader
wrapper.
Using the DebugClassLoader
is as easy as calling its static
enable() method:
1 2 3
use Symfony\Component\ClassLoader\DebugClassLoader;
DebugClassLoader::enable();