AppController.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * Application level Controller
  5. *
  6. * This file is application-wide controller file. You can put all
  7. * application-wide controller-related methods here.
  8. *
  9. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  10. * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  11. *
  12. * Licensed under The MIT License
  13. * For full copyright and license information, please see the LICENSE.txt
  14. * Redistributions of files must retain the above copyright notice.
  15. *
  16. * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  17. * @link https://cakephp.org CakePHP(tm) Project
  18. * @since 0.2.9
  19. * @license https://opensource.org/licenses/mit-license.php MIT License
  20. */
  21. namespace TestApp\Controller;
  22. use Cake\Controller\Controller;
  23. /**
  24. * This is a placeholder class.
  25. * Create the same file in app/Controller/AppController.php
  26. *
  27. * Add your application-wide methods in the class below, your controllers
  28. * will inherit them.
  29. */
  30. class AppController extends Controller
  31. {
  32. }