WARNING:
You are browsing the documentation for Symfony 2.4
which is not maintained anymore.
Consider upgrading your projects to Symfony 5.2.
Debugging a Class Loader
Debugging a Class Loader¶
New in version 2.4: The DebugClassLoader
of the Debug component was introduced in Symfony 2.4.
Previously, it was located in the ClassLoader component.
The Symfony\Component\Debug\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:
use Symfony\Component\ClassLoader\DebugClassLoader;
DebugClassLoader::enable();
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.