Skip to content

Commit

Permalink
Add temporary linter fix
Browse files Browse the repository at this point in the history
This will no longer be nexessary when biigle/largo was merged into
the core.
  • Loading branch information
mzur committed Dec 20, 2024
1 parent 725930d commit 4ce6dec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Jobs/PostprocessVolumeImport.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public function handle()
// generated (mostly) before the annotation thumbnails.
$delay = now()->addSeconds(30);

/** @phpstan-ignore-next-line */
if (class_exists(ProcessAnnotatedImage::class)) {
Image::whereIn('images.volume_id', $this->ids)
->whereHas('annotations')
Expand All @@ -59,6 +60,7 @@ public function handle()
}, 1000);
}

/** @phpstan-ignore-next-line */
if (class_exists(ProcessAnnotatedVideo::class)) {
Video::whereIn('videos.volume_id', $this->ids)
->whereHas('annotations')
Expand Down

0 comments on commit 4ce6dec

Please sign in to comment.