You are here

ConfigurationIgnorePlugin.php in Config Ignore Keys 8

File

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

namespace Drupal\config_ignore_keys\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Configuration ignore key plugin.
 *
 * @Annotation
 *
 * @Attributes({
 * @Attribute("id", required = true, type = "string"),
 * @Attribute("description", required = false, type = "string"),
 * })
 */
class ConfigurationIgnorePlugin extends Plugin {

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

  /**
   * The description for the plugin.
   *
   * @var string
   */
  public $description;

}

Classes

Namesort descending Description
ConfigurationIgnorePlugin Configuration ignore key plugin.