Skip to content

Commit

Permalink
(NFC) Minor code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seamuslee001 committed Apr 11, 2019
1 parent 9cd3992 commit 669c9ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CRM/Upgrade/Incremental/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ public static function checkFKExists($table_name, $constraint_name) {
* @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) {
Expand Down Expand Up @@ -257,6 +258,7 @@ public static function dropIndex($ctx, $table, $indexName) {
/**
* 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) {
Expand Down
3 changes: 2 additions & 1 deletion settings/Developer.setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
'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',
Expand Down

0 comments on commit 669c9ff

Please sign in to comment.