Go\Proxy\ClassProxy::interceptProperty PHP Method

interceptProperty() protected method

Makes property intercepted
protected interceptProperty ( ReflectionProperty $property )
$property ReflectionProperty Reflection of property to intercept
    protected function interceptProperty(ReflectionProperty $property)
    {
        $this->interceptedProperties[] = is_object($property) ? $property->name : $property;
        $this->isFieldsIntercepted = true;
    }