BatchGeneratorInterface.php in User Merge 2.x
Namespace
Drupal\usermergeFile
src/BatchGeneratorInterface.phpView source
<?php
namespace Drupal\usermerge;
/**
* Interface BatchGeneratorInterface.
*
* Helper which allows to generate batch process responsible for the user merge.
*
* @package Drupal\usermerge
*/
interface BatchGeneratorInterface {
/**
* Performs an operation to several values in a batch.
*/
public function createBatch() : void;
}
Interfaces
Name | Description |
---|---|
BatchGeneratorInterface | Interface BatchGeneratorInterface. |