You are here

Substitution.php in Linkit 8.5

File

src/Annotation/Substitution.php
View source
<?php

namespace Drupal\linkit\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a substitution annotation object.
 *
 * @Annotation
 */
class Substitution extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the substitution.
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

}

Classes

Namesort descending Description
Substitution Defines a substitution annotation object.