Follows not returning array of followers

These two lines:
$this->$follows = $follow_list;
$this->$follows = $follows;
need to be
$this->follows = $follow_list;
$this->follows = $follows;
instead.

1 Like