Go\Instrument\Transformer\ConstructorExecutionTransformer::__get PHP Method

__get() public method

Magic interceptor for instance creation
public __get ( string $className ) : object
$className string Name of the class to construct
return object Instance of required object
    public function __get($className)
    {
        return static::construct($className);
    }