interface ClassResolverInterface
Same name in other branches
- 9 core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php \Drupal\Core\DependencyInjection\ClassResolverInterface
- 8.9.x core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php \Drupal\Core\DependencyInjection\ClassResolverInterface
- 10 core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php \Drupal\Core\DependencyInjection\ClassResolverInterface
Provides 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
21 files declare their use of ClassResolverInterface
- BasicRecursiveValidatorFactory.php in core/
lib/ Drupal/ Core/ Validation/ BasicRecursiveValidatorFactory.php - CallableResolver.php in core/
lib/ Drupal/ Core/ Utility/ CallableResolver.php - 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
File
-
core/
lib/ Drupal/ Core/ DependencyInjection/ ClassResolverInterface.php, line 8
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
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
ClassResolverInterface::getInstanceFromDefinition | public | function | Returns a class instance with a given class definition. | 1 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.