Apple.php in Drupal 10
Same filename and directory in other branches
File
core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Apple.phpView source
<?php
namespace Drupal\plugin_test\Plugin\plugin_test\fruit;
/**
* @Plugin(
* id = "apple",
* label = "Apple",
* color = "green"
* )
*/
class Apple implements FruitInterface {
}