Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?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(); | |
| } |