mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
parent
3c240fef23
commit
73b8069137
1 changed files with 4 additions and 3 deletions
|
@ -54,7 +54,8 @@ final class CreateTestDataCommand extends Command
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||||
{
|
{
|
||||||
$pageUid = (int)$input->getArgument('pageUid') ?? 0;
|
$pageUid = $input->getArgument('pageUid') ?? 0;
|
||||||
|
\assert(\is_int($pageUid));
|
||||||
$deleteDataBefore = $input->getOption('delete-data-before') ?? false;
|
$deleteDataBefore = $input->getOption('delete-data-before') ?? false;
|
||||||
\assert(\is_bool($deleteDataBefore));
|
\assert(\is_bool($deleteDataBefore));
|
||||||
$table = 'tx_tea_domain_model_tea';
|
$table = 'tx_tea_domain_model_tea';
|
||||||
|
@ -77,7 +78,7 @@ final class CreateTestDataCommand extends Command
|
||||||
$output->writeln(sprintf('Test data in page %s created.', $pageUid));
|
$output->writeln(sprintf('Test data in page %s created.', $pageUid));
|
||||||
|
|
||||||
$referenceIndex = GeneralUtility::makeInstance(ReferenceIndex::class);
|
$referenceIndex = GeneralUtility::makeInstance(ReferenceIndex::class);
|
||||||
$referenceIndex->updateIndex(0);
|
$referenceIndex->updateIndex(false);
|
||||||
$output->writeln('Reference index updated.');
|
$output->writeln('Reference index updated.');
|
||||||
|
|
||||||
return Command::SUCCESS;
|
return Command::SUCCESS;
|
||||||
|
|
Loading…
Reference in a new issue