Closed aadswebdesign closed 9 years ago
Indeed. ZfcUser's mapper has implemented that itself. Probably should be ported from there to here?
After some thought I'd prefer to only allow setting the table name on construct, as I don't see the use case for changing the table name on-the-fly (https://github.com/ZF-Commons/ZfcUser/issues/552)
Agree with @adamlundrigan. It doesn't make sense to change the table on-the-fly.
any progress on this?
Just found out that Mapper\AbstractDbMapper is missing this. public function setTableName($tableName){ $this->tableName = $tableName; return $this; } Or am I wrong?