We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95310cc commit f5cd856Copy full SHA for f5cd856
src/Command/CreateCommand.php
@@ -38,7 +38,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
38
$typesenseName = $def['typesense_name'];
39
try {
40
$output->writeln(sprintf('<info>Deleting</info> <comment>%s</comment> (<comment>%s</comment> in Typesense)', $name, $typesenseName));
41
- $this->collectionManager->deleteCollextion($name);
+ $this->collectionManager->deleteCollection($name);
42
} catch (\Typesense\Exceptions\ObjectNotFound $exception) {
43
$output->writeln(sprintf('Collection <comment>%s</comment> <info>does not exists</info> ', $typesenseName));
44
}
0 commit comments