@cortez.connelly
To enable debug mode in a Symfony application, you can use the following steps:
1
|
$kernel = new AppKernel('prod', false); |
1
|
$kernel = new AppKernel('dev', true); |
This will enable debug mode for your application.
Note: If you are using the app.php
file, you will need to manually clear the cache after making this change. You can do this by running the php bin/console cache:clear
command.