PostsTable.php 648 B

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