Method |
Description |
|
__call ( string $methodName, array $arguments ) : mixed |
Proxy magic call method which triggers the injection of the real dependency
and returns the result of a call to the original method in the dependency |
|
__construct ( string $className, Closure $builder ) |
Constructs this proxy |
|
_activateDependency ( ) : object |
Activate the dependency and set it in the object. |
|
_addPropertyVariable ( &$propertyVariable ) : void |
Adds another variable by reference where the actual dependency object should
be injected into once this proxy is activated. |
|
_getClassName ( ) : string |
Returns the class name of the proxied dependency |
|