class TestContainerDerivativeDiscovery

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery
  2. 8.9.x core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery
  3. 11.x core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery

Defines container test derivative discovery.

Hierarchy

Expanded class hierarchy of TestContainerDerivativeDiscovery

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php, line 14

Namespace

Drupal\Tests\Core\Plugin\Discovery
View 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


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.