<?php
Raise::load('db.RaiseDbModel');
/**
* AppModel abstract class
* provides global changes of RaiseDbModel in application without being directly
* affected by framework upgrades and changes. All application model objects should
* inherit from AppModel instead of RaiseDbModel
*
* @author Sam-Mauris Yong <hellclanner at live dot com>
* @license http://www.opensource.org/licenses/bsd-license New BSD License
* @package Raise.App.Global
* @abstract
* @since 1.2
*/
abstract class AppModel extends RaiseDbModel {
}