Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Fix deprecated scheduler run example #855

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Classes/Console/Command/Scheduler/SchedulerRunCommand.php
Expand Up @@ -33,7 +33,7 @@ protected function configure()
$this->setDescription('Run scheduler');
$this->setHelp('Executes tasks that are registered in the scheduler module.

<b>Example:</b> <code>%command.full_name% 42 --force</code>');
<b>Example:</b> <code>%command.full_name% --task 42 --force</code>');
/** @deprecated Will be removed with 6.0 */
$this->setDefinition($this->createCompleteInputDefinition());
}
Expand Down
2 changes: 1 addition & 1 deletion Documentation/CommandReference/Index.rst
Expand Up @@ -1317,7 +1317,7 @@ Options

Executes tasks that are registered in the scheduler module.

**Example:** `typo3cms scheduler:run 42 --force`
**Example:** `typo3cms scheduler:run --task 42 --force`



Expand Down