Contains \Drupal\Core\Executable\ExecutableInterface.
<?php /** * @file * Contains \Drupal\Core\Executable\ExecutableInterface. */ namespace Drupal\Core\Executable; /** * An interface for executable plugins. */ interface ExecutableInterface { /** * Executes the plugin. */ public function execute(); }