cakephp2-php8/lib/Cake/Test/test_app/Plugin/TestPlugin/Model/TestPluginComment.php

29 lines
869 B
PHP
Raw Normal View History

<?php
/* SVN FILE: $Id$ */
/**
* Test App Comment Model
*
*
*
* PHP 5
*
2010-01-26 22:15:15 +00:00
* CakePHP : Rapid Development Framework (http://cakephp.org)
2011-05-29 21:31:39 +00:00
* Copyright 2005-2011, Cake Software Foundation, Inc.
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2011-05-29 21:31:39 +00:00
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
2010-01-26 19:18:20 +00:00
* @link http://cakefoundation.org/projects/info/cakephp CakePHP Project
* @package Cake.Test.test_app.Plugin.TestPlugin.Model
* @since CakePHP v 1.2.0.7726
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
class TestPluginComment extends TestPluginAppModel {
public $useTable = 'test_plugin_comments';
public $name = 'TestPluginComment';
}