From 12c13c0c61c35d14724fa1eda89cb634c8b30e48 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Wed, 24 Sep 2025 10:50:00 +0200 Subject: [PATCH] Remove redundant PHPDoc from Postgres Store query method The PHPDoc comment for the query method in the Postgres Store class was identical to the interface definition and didn't add any value. The interface already documents the parameter and return types. --- src/store/src/Bridge/Postgres/Store.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/store/src/Bridge/Postgres/Store.php b/src/store/src/Bridge/Postgres/Store.php index aaea74ee2..4cb222d40 100644 --- a/src/store/src/Bridge/Postgres/Store.php +++ b/src/store/src/Bridge/Postgres/Store.php @@ -127,11 +127,6 @@ public function add(VectorDocument ...$documents): void } } - /** - * @param array $options - * - * @return VectorDocument[] - */ public function query(Vector $vector, array $options = []): array { $where = null;