Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / IndexerExecutionInterface.php
diff --git a/web/modules/contrib/drupalmoduleupgrader/src/IndexerExecutionInterface.php b/web/modules/contrib/drupalmoduleupgrader/src/IndexerExecutionInterface.php
new file mode 100644 (file)
index 0000000..224c5e0
--- /dev/null
@@ -0,0 +1,19 @@
+<?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 boolean
+   */
+  public function hasExecutable($id);
+
+  public function execute($id, array $arguments = []);
+
+}