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