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 087f33d commit 45017e8Copy full SHA for 45017e8
DependencyInjection/Configuration.php
@@ -23,10 +23,10 @@ public function getConfigTreeBuilder()
23
$rootNode
24
->children()
25
->scalarNode('api_key')
26
- ->defaultValue(getenv('BUGSNAG_API_KEY'))
+ ->defaultValue(getenv('BUGSNAG_API_KEY') ?: null)
27
->end()
28
->scalarNode('endpoint')
29
- ->defaultValue(getenv('BUGSNAG_ENDPOINT'))
+ ->defaultValue(getenv('BUGSNAG_ENDPOINT') ?: null)
30
31
->booleanNode('callbacks')
32
->defaultValue(true)
0 commit comments