
| Current Path : /var/www/html/vendor/chi-teck/drupal-code-generator/src/ClassResolver/ |
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/vendor/chi-teck/drupal-code-generator/src/ClassResolver/ClassResolverInterface.php |
<?php declare(strict_types=1);
namespace DrupalCodeGenerator\ClassResolver;
/**
* An interface to get an instance of a class with dependency injection.
*/
interface ClassResolverInterface {
/**
* Returns a class instance with a given class name.
*
* @param string $class
* A class name.
*
* @return object
* The instance of the class.
*
* @throws \InvalidArgumentException
* If the class does not exist.
*/
public function getInstance(string $class): object;
}