Version 1
[yaffs-website] / web / modules / contrib / linkit / src / ConfigurableMatcherInterface.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\linkit\ConfigurableMatcherInterface.
6  */
7
8
9 namespace Drupal\linkit;
10
11 use Drupal\Core\Plugin\PluginFormInterface;
12
13 /**
14  * Defines the interface for configurable matchers.
15  *
16  * @see \Drupal\linkit\Annotation\Matcher
17  * @see \Drupal\linkit\ConfigurableMatcherBase
18  * @see \Drupal\linkit\MatcherInterface
19  * @see \Drupal\linkit\MatcherBase
20  * @see \Drupal\linkit\MatcherManager
21  * @see plugin_api
22  */
23 interface ConfigurableMatcherInterface extends MatcherInterface, PluginFormInterface {
24 }