cakephp2-php8/cake/tests/test_app/models/persister_one.php

31 lines
800 B
PHP
Raw Normal View History

2009-03-19 14:10:13 -07:00
<?php
2009-03-19 14:10:13 -07:00
/**
* Test App Comment Model
*
*
*
* PHP versions 4 and 5
*
2009-11-06 17:08:23 +11:00
* CakePHP : Rapid Development Framework (http://www.cakephp.org)
2009-03-19 14:10:13 -07:00
* Copyright 2006-2008, Cake Software Foundation, Inc.
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2006-2008, Cake Software Foundation, Inc.
2009-11-06 17:00:11 +11:00
* @link http://cakephp.org CakePHP Project
2009-03-19 14:10:13 -07:00
* @package cake
* @subpackage cake.tests.test_app.models
* @since CakePHP v 1.2.0.7726
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
class PersisterOne extends AppModel {
var $useTable = 'posts';
var $name = 'PersisterOne';
var $actsAs = array('PersisterOneBehavior');
var $hasMany = array('Comment');
}
?>