ConfigurableAttributeBase.php 298 B

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