ExecutableInterface.php

Contains \Drupal\Core\Executable\ExecutableInterface.

Namespace

Drupal\Core\Executable

File

drupal/core/lib/Drupal/Core/Executable/ExecutableInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Executable\ExecutableInterface.
 */
namespace Drupal\Core\Executable;


/**
 * An interface for executable plugins.
 */
interface ExecutableInterface {

  /**
   * Executes the plugin.
   */
  public function execute();

}

Interfaces

Namesort descending Description
ExecutableInterface An interface for executable plugins.