Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / entity / tests / modules / entity_module_bundle_plugin_test / src / Annotation / BundlePluginTest.php
1 <?php
2
3 namespace Drupal\entity_module_bundle_plugin_test\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines the BundlePluginTest annotation object.
9  *
10  * Plugin namespace: Plugin\BundlePluginTest.
11  *
12  * @see plugin_api
13  *
14  * @Annotation
15  */
16 class BundlePluginTest extends Plugin {
17
18   /**
19    * The plugin ID.
20    *
21    * @var string
22    */
23   public $id;
24
25   /**
26    * The plugin label.
27    *
28    * @ingroup plugin_translatable
29    *
30    * @var \Drupal\Core\Annotation\Translation
31    */
32   public $label;
33
34 }