class TestContainerDerivativeDiscovery in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery
- 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/TestContainerDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery
Defines container test derivative discovery.
Hierarchy
- class \Drupal\Tests\Core\Plugin\Discovery\TestContainerDerivativeDiscovery extends \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery implements \Drupal\Core\Plugin\Discovery\ContainerDeriverInterface
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'));
}
}