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', ) { }