ConfigurableMatcherBase.php 288 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * Contains \Drupal\linkit\ConfigurableMatcherBase.
  5. */
  6. namespace Drupal\linkit;
  7. /**
  8. * Provides a base class for configurable matchers.
  9. *
  10. * @see plugin_api
  11. */
  12. abstract class ConfigurableMatcherBase extends MatcherBase implements ConfigurableMatcherInterface {
  13. }