From 66b9a8bd087d4f16afa16d33d9d30f62698d8d99 Mon Sep 17 00:00:00 2001 From: RomainLvr Date: Tue, 21 Jan 2025 14:21:32 +0100 Subject: [PATCH] Fix indentation --- inc/tagitem.class.php | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/inc/tagitem.class.php b/inc/tagitem.class.php index 3d81de7..0cafe0f 100644 --- a/inc/tagitem.class.php +++ b/inc/tagitem.class.php @@ -97,16 +97,15 @@ public static function updateRuleActionTable(Migration $migration) $table = getTableForItemType(RuleAction::class); - $DB->updateOrDie( - $table, - [ - `value` => '_plugin_tag_tag_from_rules' - ], - [ - `value` => '_plugin_tag_tag_values' - ] - ); - + $DB->updateOrDie( + $table, + [ + `value` => '_plugin_tag_tag_from_rules' + ], + [ + `value` => '_plugin_tag_tag_values' + ] + ); return true; }