Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / IndexerExecutionInterface.php
1 <?php
2
3 namespace Drupal\drupalmoduleupgrader;
4
5 interface IndexerExecutionInterface {
6
7   /**
8    * Returns if the specified index object can be evaluated and executed safely.
9    *
10    * @param string $id
11    *  The object identifier.
12    *
13    * @return boolean
14    */
15   public function hasExecutable($id);
16
17   public function execute($id, array $arguments = []);
18
19 }