ControllerTestAppController.php 298 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Controller;
  4. use Cake\Controller\Controller;
  5. /**
  6. * AppController class
  7. */
  8. class ControllerTestAppController extends Controller
  9. {
  10. /**
  11. * modelClass property
  12. *
  13. * @var string
  14. */
  15. protected ?string $modelClass = 'Posts';
  16. }