| 1234567891011121314151617181920212223 |
- <?php
- /**
- * Test App Posts Model
- *
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright 2005-2012, Cake Software Foundation, Inc.
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc.
- * @link https://cakephp.org CakePHP Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace TestApp\Model\Table;
- use Cake\ORM\Table;
- class PostsTable extends Table
- {
- protected $_table = 'posts';
- }
|