You were doing $this->$follows which means $this->follows was null.
As $this->SOMEREF was being populated with the followers array instead of the follows variable of the class.
You were doing $this->$follows which means $this->follows was null.
As $this->SOMEREF was being populated with the followers array instead of the follows variable of the class.