From c3d555ef3cecdba402e5694eb50c6b8a12ca05a5 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 21 Jan 2018 10:01:18 +0100 Subject: [PATCH] Added missing null coalescing operator --- module/CLI/src/Model/CustomizableAppConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/CLI/src/Model/CustomizableAppConfig.php b/module/CLI/src/Model/CustomizableAppConfig.php index b228baa8..bf71c1eb 100644 --- a/module/CLI/src/Model/CustomizableAppConfig.php +++ b/module/CLI/src/Model/CustomizableAppConfig.php @@ -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' => [