AppController.php 1.0 KB

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