From cfcc42224b36b3f4372caafa94cecdaa62e3446b Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 29 Aug 2025 13:02:31 +0200 Subject: [PATCH] [Store][ClickHouse] Make store `final readonly` --- src/store/src/Bridge/ClickHouse/Store.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/store/src/Bridge/ClickHouse/Store.php b/src/store/src/Bridge/ClickHouse/Store.php index 5f4f4b84f..aecf2e273 100644 --- a/src/store/src/Bridge/ClickHouse/Store.php +++ b/src/store/src/Bridge/ClickHouse/Store.php @@ -25,12 +25,12 @@ /** * @author Grégoire Pineau */ -class Store implements ManagedStoreInterface, StoreInterface +final readonly class Store implements ManagedStoreInterface, StoreInterface { public function __construct( - private readonly HttpClientInterface $httpClient, - private readonly string $databaseName = 'default', - private readonly string $tableName = 'embedding', + private HttpClientInterface $httpClient, + private string $databaseName = 'default', + private string $tableName = 'embedding', ) { }