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