Annotation
5 years ago
Definition
5 years ago
Invoker
5 years ago
Proxy
5 years ago
Reflection
5 years ago
Container.php
5 years ago
ContainerBuilder.php
5 years ago
Debug.php
5 years ago
DependencyException.php
5 years ago
FactoryInterface.php
5 years ago
InvokerInterface.php
5 years ago
NotFoundException.php
5 years ago
Scope.php
5 years ago
functions.php
5 years ago
FactoryInterface.php
35 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PHP-DI |
| 4 | * |
| 5 | * @link http://php-di.org/ |
| 6 | * @copyright Matthieu Napoli (http://mnapoli.fr/) |
| 7 | * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) |
| 8 | */ |
| 9 | |
| 10 | namespace Cybot\Dependencies\DI; |
| 11 | |
| 12 | /** |
| 13 | * Describes the basic interface of a factory. |
| 14 | * |
| 15 | * @since 4.0 |
| 16 | * @author Matthieu Napoli <matthieu@mnapoli.fr> |
| 17 | */ |
| 18 | interface FactoryInterface |
| 19 | { |
| 20 | /** |
| 21 | * Resolves an entry by its name. If given a class name, it will return a new instance of that class. |
| 22 | * |
| 23 | * @param string $name Entry name or a class name. |
| 24 | * @param array $parameters Optional parameters to use to build the entry. Use this to force specific |
| 25 | * parameters to specific values. Parameters not defined in this array will |
| 26 | * be automatically resolved. |
| 27 | * |
| 28 | * @throws \InvalidArgumentException The name parameter must be of type string. |
| 29 | * @throws DependencyException Error while resolving the entry. |
| 30 | * @throws NotFoundException No entry or class found for the given name. |
| 31 | * @return mixed |
| 32 | */ |
| 33 | public function make($name, array $parameters = []); |
| 34 | } |
| 35 |