You are here

interface ClassResolverInterface in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php \Drupal\Core\DependencyInjection\ClassResolverInterface
  2. 9 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

Expanded class hierarchy of ClassResolverInterface

All classes that implement ClassResolverInterface

18 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.
DrupalTest.php in core/tests/Drupal/Tests/Core/DrupalTest.php
EntityContextDefinitionIsSatisfiedTest.php in core/tests/Drupal/Tests/Core/Plugin/Context/EntityContextDefinitionIsSatisfiedTest.php

... See full list

File

core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php, line 9

Namespace

Drupal\Core\DependencyInjection
View 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