Skip to content

Commit cfcc422

Browse files
committed
[Store][ClickHouse] Make store final readonly
1 parent 54104d9 commit cfcc422

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/store/src/Bridge/ClickHouse/Store.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
/**
2626
* @author Grégoire Pineau <[email protected]>
2727
*/
28-
class Store implements ManagedStoreInterface, StoreInterface
28+
final readonly class Store implements ManagedStoreInterface, StoreInterface
2929
{
3030
public function __construct(
31-
private readonly HttpClientInterface $httpClient,
32-
private readonly string $databaseName = 'default',
33-
private readonly string $tableName = 'embedding',
31+
private HttpClientInterface $httpClient,
32+
private string $databaseName = 'default',
33+
private string $tableName = 'embedding',
3434
) {
3535
}
3636

0 commit comments

Comments
 (0)