You are here

ExecutableInterface.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Executable/ExecutableInterface.php

File

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.
 *
 * @ingroup plugin_api
 */
interface ExecutableInterface {

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

}

Interfaces

Namesort descending Description
ExecutableInterface An interface for executable plugins.