cakephp2-php8/app/app_model.php

35 lines
987 B
PHP
Raw Normal View History

<?php
//////////////////////////////////////////////////////////////////////////
// + $Id$
// +------------------------------------------------------------------+ //
// + CakePHP : Rapid Development Framework <http://www.cakephp.org/> + //
// + Copyright: (c) 2005, Cake Authors/Developers + //
// +------------------------------------------------------------------+ //
// + Licensed under The MIT License + //
//////////////////////////////////////////////////////////////////////////
/**
*
* @filesource
* @package cake
* @subpackage cake.app
* @version $Revision:$
* @modifiedby $LastChangedBy:$
* @lastmodified $Date:$
*/
/**
* This file is application-wide model file. You can put all
* application-wide model-related methods here.
*
* Add your application-wide methods in the class below, your models
* will inherit them.
*
* @package cake
* @subpackage cake.app
*/
class AppModel extends Model {
}
?>