mixed
Set the row prototype.
callable
array
<?phpuse pq\Gateway as gw;class Account extends gw\Row { // ...}$table = new gw\Table("account");$table->setRowsetPrototype( (new gw\Rowset($table))->setRowPrototype(new Account($table)));?>