ExecutableInterface.php 219 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Core\Executable;
  3. /**
  4. * An interface for executable plugins.
  5. *
  6. * @ingroup plugin_api
  7. */
  8. interface ExecutableInterface {
  9. /**
  10. * Executes the plugin.
  11. */
  12. public function execute();
  13. }