1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/classes/engine/Mapper.class.php
2008-09-21 06:36:57 +00:00

35 lines
764 B
PHP

<?
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Абстрактный класс мапера
*
*/
abstract class Mapper extends Object {
protected $oDb;
/**
* Сохраняем коннект к БД
*
* @param DbSimple_Generic_Database $oDb
*/
public function __construct(DbSimple_Generic_Database $oDb) {
$this->oDb = $oDb;
}
}
?>