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