Skip to content

Commit

Permalink
ACMS-3508: Using null coalescing operator to manage the logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
apathak18 committed Jan 30, 2024
1 parent 4ee3735 commit c12a94c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings/config.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
* settings.php, and we will not overwrite it.
*/
// phpcs:ignore
$drs_override_config_directories = !isset($drs_override_config_directories) ? TRUE : FALSE;
$drs_override_site_studio_sync_directories = !isset($drs_override_site_studio_sync_directories) ? TRUE : FALSE;
$drs_override_config_directories = $drs_override_config_directories ?? FALSE;
$drs_override_site_studio_sync_directories = $drs_override_site_studio_sync_directories ?? FALSE;

/**
* Site path.
Expand Down

0 comments on commit c12a94c

Please sign in to comment.