Skip to content

Commit 34e7738

Browse files
committed
code quality improvements
1 parent c554c4f commit 34e7738

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Client/CollectionClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function create($name, $fields, $defaultSortingField, array $tokenSeparat
6969
'fields' => $fields,
7070
'default_sorting_field' => $defaultSortingField,
7171
'token_separators' => $tokenSeparators,
72-
'symbols_to_index' => $symbolsToIndex
72+
'symbols_to_index' => $symbolsToIndex,
7373
]);
7474
}
7575

src/Manager/CollectionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function createCollection($collectionDefinitionName)
6565

6666
//to pass the tests
6767
$tokenSeparators = array_key_exists('token_separators', $definition) ? $definition['token_separators'] : [];
68-
$symbolsToIndex = array_key_exists('symbols_to_index', $definition) ? $definition['symbols_to_index'] : [];
68+
$symbolsToIndex = array_key_exists('symbols_to_index', $definition) ? $definition['symbols_to_index'] : [];
6969

7070
$this->collectionClient->create(
7171
$definition['typesense_name'],

0 commit comments

Comments
 (0)