You are here

public function FormAssemblyBatchProcessor::batchPostProcess in FormAssembly 8

Completes the batch process business logic.

Parameters

string $sync_id: The ID assigned to this sync operation.

Throws

\Exception

File

src/FormAssemblyBatchProcessor.php, line 116

Class

FormAssemblyBatchProcessor
The "business logic" of the batch process for syncing with FormAssembly.

Namespace

Drupal\formassembly

Code

public function batchPostProcess($sync_id) {
  if (!empty($sync_id)) {
    $this->apiSync
      ->syncForms($sync_id);
  }
}