From 7a807364af52e9a0ff7d17d4b15935064e21ee69 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Wed, 10 Apr 2019 09:39:27 +1000 Subject: [PATCH] (NFC) Minor code style fixes --- CRM/Upgrade/Incremental/Base.php | 2 ++ settings/Developer.setting.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CRM/Upgrade/Incremental/Base.php b/CRM/Upgrade/Incremental/Base.php index a044dacf06..1ee17e37e8 100644 --- a/CRM/Upgrade/Incremental/Base.php +++ b/CRM/Upgrade/Incremental/Base.php @@ -149,6 +149,7 @@ class CRM_Upgrade_Incremental_Base { * @param string $column * @param string $properties * @param bool $localizable is this a field that should be localized + * @param string|NULL $version CiviCRM version to use if rebuilding multilingual schema * @return bool */ public static function addColumn($ctx, $table, $column, $properties, $localizable = FALSE, $version = NULL) { @@ -257,6 +258,7 @@ class CRM_Upgrade_Incremental_Base { /** * Rebuild Multilingual Schema. * @param CRM_Queue_TaskContext $ctx + * @param string|NULL $version CiviCRM version to use if rebuilding multilingual schema * @return bool */ public static function rebuildMultilingalSchema($ctx, $version = NULL) { diff --git a/settings/Developer.setting.php b/settings/Developer.setting.php index 8f4f543eab..4ab27dd90a 100644 --- a/settings/Developer.setting.php +++ b/settings/Developer.setting.php @@ -76,7 +76,8 @@ return [ 'group_name' => 'Developer Preferences', 'group' => 'developer', 'name' => 'debug_enabled', - 'config_key' => 'debug', // we can't call the setting debug as that has other meanings in api + // we can't call the setting debug as that has other meanings in api + 'config_key' => 'debug', 'type' => 'Boolean', 'quick_form_type' => 'YesNo', 'default' => '0', -- 2.25.1