16 lines
No EOL
224 B
PHP
16 lines
No EOL
224 B
PHP
<?php
|
|
abstract class Katharsis_Model_Abstract
|
|
{
|
|
protected $_con;
|
|
|
|
public final function __construct()
|
|
{
|
|
$this->_con = Katharsis_DatabaseConnector::getConnection();
|
|
$this->init();
|
|
}
|
|
|
|
public function init()
|
|
{
|
|
}
|
|
}
|
|
?>
|