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