[Debug] fix readme: DebugClassLoader moved to debug itself

This commit is contained in:
Tobias Schultze 2015-11-25 14:52:03 +01:00
parent 26ef430b5b
commit 123a300ad7

View File

@ -15,6 +15,7 @@ Debug::enable();
You can also use the tools individually: You can also use the tools individually:
```php ```php
use Symfony\Component\Debug\DebugClassLoader;
use Symfony\Component\Debug\ErrorHandler; use Symfony\Component\Debug\ErrorHandler;
use Symfony\Component\Debug\ExceptionHandler; use Symfony\Component\Debug\ExceptionHandler;
@ -25,11 +26,9 @@ if ('cli' !== php_sapi_name()) {
ini_set('display_errors', 1); ini_set('display_errors', 1);
} }
ErrorHandler::register(); ErrorHandler::register();
DebugClassLoader::enable();
``` ```
Note that the `Debug::enable()` call also registers the debug class loader
from the Symfony ClassLoader component when available.
This component can optionally take advantage of the features of the HttpKernel This component can optionally take advantage of the features of the HttpKernel
and HttpFoundation components. and HttpFoundation components.