mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-17 15:59:56 +03:00
Added missing null coalescing operator
This commit is contained in:
parent
bf8e14708b
commit
c3d555ef3c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue