W3cubDocs

/Symfony 4.1

InstantiatorInterface

interface InstantiatorInterface

Lazy proxy instantiator, capable of instantiating a proxy given a container, the service definitions and a callback that produces the real service instance.

Methods

object instantiateProxy(ContainerInterface $container, Definition $definition, string $id, callable $realInstantiator)

Instantiates a proxy object.

Details

object instantiateProxy(ContainerInterface $container, Definition $definition, string $id, callable $realInstantiator)

Instantiates a proxy object.

Parameters

ContainerInterface $container The container from which the service is being requested
Definition $definition The definition of the requested service
string $id Identifier of the requested service
callable $realInstantiator Zero-argument callback that is capable of producing the real service instance

Return Value

object