Fixing PHP Fixer Format
This commit is contained in:
parent
79612405e8
commit
aca5e7b9bb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue