
| Current Path : /var/www/html/rocksensor/web/core/lib/Drupal/Core/DependencyInjection/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php |
<?php
namespace Drupal\Core\DependencyInjection;
/**
* Provides interface to get an instance of a class with dependency injection.
*/
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);
}