10 lines
205 B
PHP
Raw Normal View History

2019-07-17 22:08:50 +02:00
<?php
abstract class Monkeys_Db_Table_Gateway extends Zend_Db_Table_Abstract
{
public function getRowInstance($id)
{
return $this->fetchRow($this->select()->where('id = ?', $id));
}
}