Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / paragraphs / src / Annotation / ParagraphsBehavior.php
diff --git a/web/modules/contrib/paragraphs/src/Annotation/ParagraphsBehavior.php b/web/modules/contrib/paragraphs/src/Annotation/ParagraphsBehavior.php
deleted file mode 100644 (file)
index 96d9ef2..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-namespace Drupal\paragraphs\Annotation;
-
-use Drupal\Component\Annotation\Plugin;
-
-/**
- * Defines a ParagraphsBehavior annotation object.
- *
- * Paragraphs behavior builders handle extra settings for the paragraph
- * entity.
- *
- * @Annotation
- *
- */
-class ParagraphsBehavior extends Plugin {
-
-  /**
-   * The plugin ID.
-   *
-   * @var string
-   */
-  public $id;
-
-  /**
-   * The human-readable name of the paragraphs behavior plugin.
-   *
-   * @ingroup plugin_translatable
-   *
-   * @var \Drupal\Core\Annotation\Translation
-   */
-  public $label;
-
-  /**
-   * The plugin description.
-   *
-   * @ingroup plugin_translatable
-   *
-   * @var string
-   */
-  public $description;
-
-  /**
-   * The plugin weight.
-   *
-   * @var int
-   */
-  public $weight;
-
-}