1
0
mirror of synced 2025-02-01 04:51:45 +03:00
doctrine2/classes/Session/Common.class.php
doctrine 571cb46726
2006-04-13 20:37:28 +00:00

11 lines
272 B
PHP

<?php
/**
* standard session, the parent of pgsql, mysql and sqlite
*/
class Doctrine_Session_Common extends Doctrine_Session {
public function modifyLimitQuery($query,$limit,$offset) {
return $query." LIMIT ".$limit." OFFSET ".$offset;
}
}
?>