Banana.php in Drupal 9
Same filename and directory in other branches
File
core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Banana.phpView source
<?php
namespace Drupal\plugin_test\Plugin\plugin_test\fruit;
/**
* @Plugin(
* id = "banana",
* label = "Banana",
* color = "yellow",
* uses = {
* "bread" = @Translation("Banana bread"),
* "loaf" = @PluralTranslation(
* singular = "@count loaf",
* plural = "@count loaves"
* )
* }
* )
*/
class Banana implements FruitInterface {
}