Version 1
[yaffs-website] / web / core / modules / system / tests / modules / plugin_test / src / Plugin / plugin_test / fruit / Banana.php
1 <?php
2
3 namespace Drupal\plugin_test\Plugin\plugin_test\fruit;
4
5 /**
6  * @Plugin(
7  *   id = "banana",
8  *   label = "Banana",
9  *   color = "yellow",
10  *   uses = {
11  *     "bread" = @Translation("Banana bread"),
12  *     "loaf" = @PluralTranslation(
13  *       singular = "@count loaf",
14  *       plural = "@count loaves"
15  *     )
16  *   }
17  * )
18  */
19 class Banana implements FruitInterface {
20
21 }