ConfigurableMatcherInterface.php 451 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\linkit;
  3. use Drupal\Core\Plugin\PluginFormInterface;
  4. /**
  5. * Defines the interface for configurable matchers.
  6. *
  7. * @see \Drupal\linkit\Annotation\Matcher
  8. * @see \Drupal\linkit\ConfigurableMatcherBase
  9. * @see \Drupal\linkit\MatcherInterface
  10. * @see \Drupal\linkit\MatcherBase
  11. * @see \Drupal\linkit\MatcherManager
  12. * @see plugin_api
  13. */
  14. interface ConfigurableMatcherInterface extends MatcherInterface, PluginFormInterface {
  15. }