Version 1
[yaffs-website] / web / modules / contrib / linkit / src / ConfigurableMatcherInterface.php
diff --git a/web/modules/contrib/linkit/src/ConfigurableMatcherInterface.php b/web/modules/contrib/linkit/src/ConfigurableMatcherInterface.php
new file mode 100644 (file)
index 0000000..0f236ef
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\linkit\ConfigurableMatcherInterface.
+ */
+
+
+namespace Drupal\linkit;
+
+use Drupal\Core\Plugin\PluginFormInterface;
+
+/**
+ * Defines the interface for configurable matchers.
+ *
+ * @see \Drupal\linkit\Annotation\Matcher
+ * @see \Drupal\linkit\ConfigurableMatcherBase
+ * @see \Drupal\linkit\MatcherInterface
+ * @see \Drupal\linkit\MatcherBase
+ * @see \Drupal\linkit\MatcherManager
+ * @see plugin_api
+ */
+interface ConfigurableMatcherInterface extends MatcherInterface, PluginFormInterface {
+}