/opt/cpanel/ea-wappspector/vendor/php-di/php-di/src
NameSizeModeActions
Attribute/-0755rm
Compiler/-0755rm
Definition/-0755rm
Factory/-0755rm
Invoker/-0755rm
Proxy/-0755rm
CompiledContainer.php42690644editdlrm
Container.php136140644editdlrm
ContainerBuilder.php105800644editdlrm
DependencyException.php2240644editdlrm
FactoryInterface.php9960644editdlrm
functions.php44650644editdlrm
NotFoundException.php2630644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/php-di/php-di/src/FactoryInterface.php (996B)
*/ interface FactoryInterface { /** * Resolves an entry by its name. If given a class name, it will return a new instance of that class. * * @param string $name Entry name or a class name. * @param array $parameters Optional parameters to use to build the entry. Use this to force specific * parameters to specific values. Parameters not defined in this array will * be automatically resolved. * * @throws \InvalidArgumentException The name parameter must be of type string. * @throws DependencyException Error while resolving the entry. * @throws NotFoundException No entry or class found for the given name. */ public function make(string $name, array $parameters = []) : mixed; }