224c5e0324b8f3d54a5dd0d54a6a4125c88470aa
[yaffs-website] / 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 }