public function BatchManager::setStepIncomplete in Workbench Moderation to Content Moderation 8
Set a particular step to incomplete.
Parameters
string $step: The name of the step, e.g. "step1".
File
- src/
BatchManager.php, line 90
Class
- BatchManager
- Manages communication between Batch API and the migration manager.
Namespace
Drupal\wbm2cmCode
public function setStepIncomplete($step) {
$this->batchStore
->set($step, 'incomplete');
}