8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ef430 commit 123a300Copy full SHA for 123a300
src/Symfony/Component/Debug/README.md
@@ -15,6 +15,7 @@ Debug::enable();
15
You can also use the tools individually:
16
17
```php
18
+use Symfony\Component\Debug\DebugClassLoader;
19
use Symfony\Component\Debug\ErrorHandler;
20
use Symfony\Component\Debug\ExceptionHandler;
21
@@ -25,11 +26,9 @@ if ('cli' !== php_sapi_name()) {
25
26
ini_set('display_errors', 1);
27
}
28
ErrorHandler::register();
29
+DebugClassLoader::enable();
30
```
31
-Note that the `Debug::enable()` call also registers the debug class loader
-from the Symfony ClassLoader component when available.
32
-
33
This component can optionally take advantage of the features of the HttpKernel
34
and HttpFoundation components.
35
0 commit comments