2008-10-17 16:39:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Test App Comment Model
|
|
|
|
*
|
2009-11-06 17:46:59 +11:00
|
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 21:28:17 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-10-17 16:39:39 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-10-17 16:39:39 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 21:28:17 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 17:00:11 +11:00
|
|
|
* @link http://cakephp.org CakePHP Project
|
2013-05-31 00:11:14 +02:00
|
|
|
* @package Cake.Test.TestApp.Model
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP v 1.2.0.7726
|
2013-05-31 00:11:14 +02:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-08-10 12:22:09 +02:00
|
|
|
* Post
|
2013-05-31 00:11:14 +02:00
|
|
|
*
|
|
|
|
* @package Cake.Test.TestApp.Model
|
2008-10-17 16:39:39 +00:00
|
|
|
*/
|
|
|
|
class Post extends AppModel {
|
2012-03-17 23:53:13 -04:00
|
|
|
|
2010-04-04 17:14:00 +10:00
|
|
|
public $useTable = 'posts';
|
2012-03-17 23:53:13 -04:00
|
|
|
|
2008-10-17 16:39:39 +00:00
|
|
|
}
|