Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/store/src/Bridge/ClickHouse/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
/**
* @author Grégoire Pineau <[email protected]>
*/
final readonly class Store implements ManagedStoreInterface, StoreInterface
class Store implements ManagedStoreInterface, StoreInterface
{
public function __construct(
private HttpClientInterface $httpClient,
private string $databaseName = 'default',
private string $tableName = 'embedding',
private readonly HttpClientInterface $httpClient,
private readonly string $databaseName = 'default',
private readonly string $tableName = 'embedding',
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/store/src/Bridge/Local/InMemoryStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Guillaume Loulier <[email protected]>
*/
final class InMemoryStore implements ManagedStoreInterface, StoreInterface
class InMemoryStore implements ManagedStoreInterface, StoreInterface
{
/**
* @var VectorDocument[]
Expand Down
2 changes: 1 addition & 1 deletion src/store/src/Bridge/SurrealDb/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* @author Guillaume Loulier <[email protected]>
*/
final class Store implements ManagedStoreInterface, StoreInterface
class Store implements ManagedStoreInterface, StoreInterface
{
private string $authenticationToken = '';

Expand Down