Skip to content
Advertisement

PDO as constructor argument

I have the following class:

JavaScript

I use the following to create a UserRepository object:

JavaScript

I’m getting the following error in the constructor of the UserRepository:

JavaScript

What am I doing wrong?

Advertisement

Answer

Your constructor uses the variable as dynamic attribute-name. Therefore it tries to convert it to a string. $this->{$conn} = $conn vs. $this->conn = $conn.

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement