From fdd328a84b59c68f8c46b1012f5682dec9efad03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Thu, 9 Oct 2025 20:53:44 +0200 Subject: [PATCH] Correct import --- src/Command/CacheLatestArticlesCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/CacheLatestArticlesCommand.php b/src/Command/CacheLatestArticlesCommand.php index 0ab246a..42617e0 100644 --- a/src/Command/CacheLatestArticlesCommand.php +++ b/src/Command/CacheLatestArticlesCommand.php @@ -4,6 +4,7 @@ declare(strict_types=1); namespace App\Command; +use FOS\ElasticaBundle\Finder\FinderInterface; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; @@ -14,7 +15,6 @@ use Elastica\Query; use Elastica\Collapse; use Elastica\Query\Terms; use Psr\Cache\CacheItemPoolInterface; -use App\Search\FinderInterface; use swentel\nostr\Key\Key; #[AsCommand(name: 'app:cache_latest_articles', description: 'Cache the latest articles list')]