I was using the following code in PHP 5.3 :
$this->_tableNames =& new DbTableNames();
But now, I updated my version to PHP 5.5 and get this error :
Deprecated: Assigning the return value of new by reference is deprecated
I understand that PHP 5.5 deprecates that operation. What would be relevant line to substitute so i can run my application on PHP 5.5?