From 661e4366027654b498807a87b044ed5f882676ab Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 5 Sep 2025 16:57:29 +0200 Subject: [PATCH] [Store] Remove duplicate class comment from Indexer The comment was already present on IndexerInterface and duplicated on the implementation class. --- src/store/src/Indexer.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/store/src/Indexer.php b/src/store/src/Indexer.php index 657f5e744..917be7779 100644 --- a/src/store/src/Indexer.php +++ b/src/store/src/Indexer.php @@ -17,8 +17,6 @@ use Symfony\AI\Store\Document\VectorizerInterface; /** - * Converts a collection of TextDocuments into VectorDocuments and pushes them to a store implementation. - * * @author Christopher Hertel */ final readonly class Indexer implements IndexerInterface