mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-26 02:40:41 -06:00
Added missing null coalescing operator
This commit is contained in:
parent
bf8e14708b
commit
c3d555ef3c
@ -225,7 +225,7 @@ final class CustomizableAppConfig implements ArraySerializableInterface
|
||||
$config = [
|
||||
'app_options' => [
|
||||
'secret_key' => $this->app['SECRET'],
|
||||
'disable_track_param' => $this->app['DISABLE_TRACK_PARAM'],
|
||||
'disable_track_param' => $this->app['DISABLE_TRACK_PARAM'] ?? null,
|
||||
],
|
||||
'entity_manager' => [
|
||||
'connection' => [
|
||||
|
Loading…
Reference in New Issue
Block a user