Added missing null coalescing operator

This commit is contained in:
Alejandro Celaya 2018-01-21 10:01:18 +01:00
parent bf8e14708b
commit c3d555ef3c

View File

@ -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' => [