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\Plugin\Context\ContextDefinitionInterface. | |
| */ | |
| namespace Drupal\Core\Plugin\Context; | |
| use Drupal\Component\Plugin\Context\ContextDefinitionInterface as ComponentContextDefinitionInterface; | |
| /** | |
| * Interface for context definitions. | |
| */ | |
| interface ContextDefinitionInterface extends ComponentContextDefinitionInterface { | |
| /** | |
| * Returns the data definition of the defined context. | |
| * | |
| * @return \Drupal\Core\TypedData\DataDefinitionInterface | |
| * The data definition object. | |
| */ | |
| public function getDataDefinition(); | |
| } |