You are here

Cherry.php in Drupal 10

File

core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Cherry.php
View source
<?php

namespace Drupal\plugin_test\Plugin\plugin_test\fruit;


/**
 * @Plugin(
 *   id = "cherry",
 *   label = "Cherry",
 *   color = "red"
 * )
 */
class Cherry implements FruitInterface {

}

Classes

Namesort descending Description
Cherry Plugin annotation @Plugin( id = "cherry", label = "Cherry", color = "red" )