class TestContainerDerivativeDiscovery
Defines container test derivative discovery.
Hierarchy
- class \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery implements \Drupal\Component\Plugin\Derivative\DeriverInterface
- class \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery implements \Drupal\Core\Plugin\Discovery\ContainerDeriverInterface extends \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery
 
 
Expanded class hierarchy of TestContainerDerivativeDiscovery
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Plugin/ Discovery/ TestContainerDerivativeDiscovery.php, line 12  
Namespace
Drupal\Tests\Core\Plugin\DiscoveryView source
class TestContainerDerivativeDiscovery extends TestDerivativeDiscovery implements ContainerDeriverInterface {
  
  /**
   * Constructs a TestContainerDerivativeDiscovery object.
   *
   * @var \Symfony\Contracts\EventDispatcher\EventDispatcherInterface $example_service
   *   Some service.
   */
  public function __construct(EventDispatcherInterface $example_service) {
  }
  
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static($container->get('example_service'));
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | 
|---|---|---|---|---|
| TestContainerDerivativeDiscovery::create | public static | function | Creates a new class instance. | Overrides ContainerDeriverInterface::create | 
| TestContainerDerivativeDiscovery::__construct | public | function | Constructs a TestContainerDerivativeDiscovery object. | |
| TestDerivativeDiscovery::getDerivativeDefinition | public | function | Gets the definition of a derivative plugin. | Overrides DeriverInterface::getDerivativeDefinition | 
| TestDerivativeDiscovery::getDerivativeDefinitions | public | function | Gets the definition of all derivatives of a base plugin. | Overrides DeriverInterface::getDerivativeDefinitions | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.