From c062e231a88b7cc67c3d73cd7a8f10a4c59f2129 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 19 Dec 2021 16:45:16 -0600 Subject: [PATCH] Fixing PHP Fixer Format --- ext/auto_tagger/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/auto_tagger/main.php b/ext/auto_tagger/main.php index 3c6d43dd..f07804e9 100644 --- a/ext/auto_tagger/main.php +++ b/ext/auto_tagger/main.php @@ -269,7 +269,7 @@ class AutoTagger extends Extension if (!empty($tag_id)) { $image_ids = $database->get_col_iterable("SELECT image_id FROM image_tags WHERE tag_id = :tag_id", ["tag_id"=>$tag_id]); foreach ($image_ids as $image_id) { - $image_id = (int)$image_id; + $image_id = (int) $image_id; $image = Image::by_id($image_id); $event = new TagSetEvent($image, $image->get_tag_array()); send_event($event);