Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
This commit is contained in:
John Molakvoæ 2021-06-02 17:26:05 +02:00 committed by Arthur Schiwon
parent b342a239e7
commit a708dea9cd
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class AddMissingIndices extends Command {
$indexes = $this->indexManager->getPending();
foreach ($indexes as $index) {
$output->writeln('<info>Adding additonal ' . $index->getName() . ' index to the ' . $index->getTable() . ' this can take some time..</info>');
$output->writeln('<info>Adding additional ' . $index->getName() . ' index to the ' . $index->getTable() . ' this can take some time</info>');
$index->add();
}
}