PostsTable.php 614 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Test App Posts Model
  4. *
  5. * CakePHP : Rapid Development Framework (https://cakephp.org)
  6. * Copyright 2005-2012, Cake Software Foundation, Inc.
  7. *
  8. * Licensed under The MIT License
  9. * Redistributions of files must retain the above copyright notice.
  10. *
  11. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc.
  12. * @link https://cakephp.org CakePHP Project
  13. * @since 3.0.0
  14. * @license https://opensource.org/licenses/mit-license.php MIT License
  15. */
  16. namespace TestApp\Model\Table;
  17. use Cake\ORM\Table;
  18. class PostsTable extends Table
  19. {
  20. protected $_table = 'posts';
  21. }