__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace DI;
/**
* Describes the basic interface of a factory.
*
* @api
*
* @since 4.0
* @author Matthieu Napoli <matthieu@mnapoli.fr>
*/
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;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Attribute | Folder | 0777 |
|
|
| Compiler | Folder | 0777 |
|
|
| Definition | Folder | 0777 |
|
|
| Factory | Folder | 0777 |
|
|
| Invoker | Folder | 0777 |
|
|
| Proxy | Folder | 0777 |
|
|
| CompiledContainer.php | File | 4.05 KB | 0777 |
|
| Container.php | File | 12.95 KB | 0777 |
|
| ContainerBuilder.php | File | 10.22 KB | 0777 |
|
| DependencyException.php | File | 224 B | 0777 |
|
| FactoryInterface.php | File | 996 B | 0777 |
|
| NotFoundException.php | File | 263 B | 0777 |
|
| functions.php | File | 4.36 KB | 0777 |
|