Follows not returning array of followers

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.

1 Like