interface ClassResolverInterface in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php \Drupal\Core\DependencyInjection\ClassResolverInterface
Provides an interface to get an instance of a class with dependency injection.
Hierarchy
- interface \Drupal\Core\DependencyInjection\ClassResolverInterface
Expanded class hierarchy of ClassResolverInterface
All classes that implement ClassResolverInterface
19 files declare their use of ClassResolverInterface
- ConstraintValidatorFactory.php in core/
lib/ Drupal/ Core/ Validation/ ConstraintValidatorFactory.php - ContextDefinitionIsSatisfiedTest.php in core/
tests/ Drupal/ Tests/ Core/ Plugin/ Context/ ContextDefinitionIsSatisfiedTest.php - ContextHandlerTest.php in core/
tests/ Drupal/ Tests/ Core/ Plugin/ ContextHandlerTest.php - Contains \Drupal\Tests\Core\Plugin\ContextHandlerTest.
- ControllerResolver.php in core/
lib/ Drupal/ Core/ Controller/ ControllerResolver.php - DrupalTest.php in core/
tests/ Drupal/ Tests/ Core/ DrupalTest.php
File
- core/
lib/ Drupal/ Core/ DependencyInjection/ ClassResolverInterface.php, line 9
Namespace
Drupal\Core\DependencyInjectionView source
interface ClassResolverInterface {
/**
* Returns a class instance with a given class definition.
*
* In contrast to controllers you don't specify a method.
*
* @param string $definition
* A class name or service name.
*
* @return object
* The instance of the class.
*
* @throws \InvalidArgumentException
* If $class is not a valid service identifier and the class does not exist.
*/
public function getInstanceFromDefinition($definition);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClassResolverInterface:: |
public | function | Returns a class instance with a given class definition. | 1 |