So i get the error
"Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR) in /Applications/MAMP/htdocs/classes/class.ManageUsers.php on line 10",
does anyone know what part of the syntax is wrong? Below is the relevant class.
5    class ManageUsers {
6   public $link;
7   
8   function __construct(){
9       $db_connection = new dbConnection();
10      $this->link = db_connection->connect();
11      return $this->link;
12  }
 
     
    