Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Orange.php
  2. 9 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Orange.php

Namespace

Drupal\plugin_test\Plugin\plugin_test\fruit

File

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

namespace Drupal\plugin_test\Plugin\plugin_test\fruit;


/**
 * @Plugin(
 *   id = "orange",
 *   label = "Orange",
 *   color = "orange"
 * )
 */
class Orange implements FruitInterface {

}

Classes

Namesort descending Description
Orange Plugin annotation @Plugin( id = "orange", label = "Orange", color = "orange" )