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\migrate\Plugin\RequirementsInterface. | |
*/ | |
namespace Drupal\migrate\Plugin; | |
/** | |
* An interface to check for a migrate plugin requirements. | |
*/ | |
interface RequirementsInterface { | |
/** | |
* Checks if requirements for this plugin are OK. | |
* | |
* @throws \Drupal\migrate\Exception\RequirementsException | |
* Thrown when requirements are not met. | |
*/ | |
public function checkRequirements(); | |
} |