drupalmoduleupgrader-8.x-1.5/src/IndexerExecutionInterface.php
src/IndexerExecutionInterface.php
<?php
namespace Drupal\drupalmoduleupgrader;
interface IndexerExecutionInterface {
/**
* Returns if the specified index object can be evaluated and executed safely.
*
* @param string $id
* The object identifier.
*
* @return bool
*/
public function hasExecutable($id);
public function execute($id, array $arguments = []);
}
