Skip to content

Commit

Permalink
Default to false when setting the "dev" configuration value (#315)
Browse files Browse the repository at this point in the history
The value gets passed down to methods requiring a boolean so null won't do the trick
  • Loading branch information
Jalle19 authored and patrickbrouwers committed Mar 7, 2018
1 parent f5a7a62 commit e2997b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/doctrine.php
Expand Up @@ -22,7 +22,7 @@
*/
'managers' => [
'default' => [
'dev' => env('APP_DEBUG'),
'dev' => env('APP_DEBUG', false),
'meta' => env('DOCTRINE_METADATA', 'annotations'),
'connection' => env('DB_CONNECTION', 'mysql'),
'namespaces' => [],
Expand Down

0 comments on commit e2997b3

Please sign in to comment.