diff --git a/src/store/src/Bridge/Neo4j/Store.php b/src/store/src/Bridge/Neo4j/Store.php index 6c3936966..52096b2c7 100644 --- a/src/store/src/Bridge/Neo4j/Store.php +++ b/src/store/src/Bridge/Neo4j/Store.php @@ -29,9 +29,9 @@ public function __construct( private HttpClientInterface $httpClient, private string $endpointUrl, - #[\SensitiveParameter] private string $username, + private string $username, #[\SensitiveParameter] private string $password, - #[\SensitiveParameter] private string $databaseName, + private string $databaseName, private string $vectorIndexName, private string $nodeName, private string $embeddingsField = 'embeddings', diff --git a/src/store/src/Bridge/SurrealDb/Store.php b/src/store/src/Bridge/SurrealDb/Store.php index b60c1e933..169761cc3 100644 --- a/src/store/src/Bridge/SurrealDb/Store.php +++ b/src/store/src/Bridge/SurrealDb/Store.php @@ -32,10 +32,10 @@ final class Store implements ManagedStoreInterface, StoreInterface public function __construct( private readonly HttpClientInterface $httpClient, private readonly string $endpointUrl, - #[\SensitiveParameter] private readonly string $user, + private readonly string $user, #[\SensitiveParameter] private readonly string $password, - #[\SensitiveParameter] private readonly string $namespace, - #[\SensitiveParameter] private readonly string $database, + private readonly string $namespace, + private readonly string $database, private readonly string $table = 'vectors', private readonly string $vectorFieldName = '_vectors', private readonly string $strategy = 'cosine', diff --git a/src/store/src/Bridge/Typesense/Store.php b/src/store/src/Bridge/Typesense/Store.php index f8626cf69..8bcb8d14f 100644 --- a/src/store/src/Bridge/Typesense/Store.php +++ b/src/store/src/Bridge/Typesense/Store.php @@ -30,7 +30,7 @@ public function __construct( private HttpClientInterface $httpClient, private string $endpointUrl, #[\SensitiveParameter] private string $apiKey, - #[\SensitiveParameter] private string $collection, + private string $collection, private string $vectorFieldName = '_vectors', private int $embeddingsDimension = 1536, ) {