The injector class deals with dependency management as well as object creation and function context invocation.
api | |
---|---|
package | Default |
__construct(\DI\Injector $parent = null
)
Provide a parent injector when you wish to optionally override some dependencies but not others
\DI\Injector
The parent injector to optionally retrieve dependencies from
annotate(callable $callable) : \DI\A
callable
The function to annotate.
\DI\A
no-argument function that invokes the specified function with all of its' parameters dependency injected.bind(string $id, object $instance) : object
string
Class identifier. This must be the fully qualified class name.
object
The instance to bind to the specified class identifier.
object
The requested instance.get(string $id) : object
string
Class identifier. This must be the fully qualified class name.
\DI\Interop\Container\Exception\NotFoundException |
if the class identifier was not found. |
---|
object
The requested instance.has(string $id) : boolean
string
Class identifier. This must be the fully qualified class name.
boolean
True if the instance exists, otherwise false.instantiate(string $id) : object
Use Injector->get() if you want to retrieve the same instance each time.
string
Class identifier. This must be the fully qualified class name.
object
The instance of your class, dependency injected via its' constructor.