class DebugClassLoader
deprecated
since version 2.4, to be removed in 3.0. Use {@link \Symfony\Component\Debug\DebugClassLoader} instead.
Autoloader checking if the class is really defined in the file found.
The DebugClassLoader will wrap all registered autoloaders providing a findFile method and will throw an exception if a file is found but does not declare the class.
Methods
__construct(object $classFinder) Constructor. | ||
object | getClassLoader() Gets the wrapped class loader. | |
static | enable() Replaces all autoloaders implementing a findFile method by a DebugClassLoader wrapper. | |
unregister() Unregisters this instance as an autoloader. | ||
string|null | findFile(string $class) Finds a file by class name. | |
bool|null | loadClass(string $class) Loads the given class or interface. |
Details
__construct(object $classFinder)
Constructor.
object getClassLoader()
Gets the wrapped class loader.
static enable()
Replaces all autoloaders implementing a findFile method by a DebugClassLoader wrapper.
unregister()
Unregisters this instance as an autoloader.
string|null findFile(string $class)
Finds a file by class name.
bool|null loadClass(string $class)
Loads the given class or interface.
Please login to continue.