(NFC) Minor code style fixes
authorSeamus Lee <seamuslee001@gmail.com>
Tue, 9 Apr 2019 23:39:27 +0000 (09:39 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Tue, 9 Apr 2019 23:39:27 +0000 (09:39 +1000)
CRM/Upgrade/Incremental/Base.php
settings/Developer.setting.php

index a044dacf06c82a61ced4c13157e595dd26b5fab2..1ee17e37e8568bc7c8df863d7f0e2708831aa0e6 100644 (file)
@@ -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) {
index 8f4f543eab5eb30f88cfe8bca95bfb328d4458ac..4ab27dd90a5099a1e31c69cf711b2c56f7a7f59b 100644 (file)
@@ -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',