Plugin1A.php in Service Container 7
Same filename and directory in other branches
File
modules/providers/service_container_annotation_discovery/tests/modules/service_container_annotation_discovery_test/src/Plugin/Plugin1/Plugin1A/Plugin1A.phpView source
<?php
namespace Drupal\service_container_annotation_discovery_test\Plugin\Plugin1\Plugin1A;
use Drupal\Component\Annotation\Plugin;
use Drupal\Component\Plugin\PluginBase;
/**
* Class Plugin1A
*
* @Plugin(
* id = "Plugin1A",
* label = "Label Plugin1A"
* )
*
* @package Drupal\service_container_annotation_discovery_test\Plugin\Plugin1\Plugin1A
*/
class Plugin1A extends PluginBase {
}