Файл: vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php
Строк: 32
<?php
namespace DoctrineInstantiator;
use DoctrineInstantiatorExceptionExceptionInterface;
/**
* Instantiator provides utility methods to build objects without invoking their constructors
*/
interface InstantiatorInterface
{
/**
* @param string $className
* @phpstan-param class-string<T> $className
*
* @return object
* @phpstan-return T
*
* @throws ExceptionInterface
*
* @template T of object
*/
public function instantiate($className);
}