Base for a static organization website

AppShell.php 358B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * AppShell file
  4. *
  5. * @link http://cakephp.org CakePHP(tm) Project
  6. * @since CakePHP(tm) v 2.0
  7. */
  8. App::uses('Shell', 'Console');
  9. /**
  10. * Application Shell
  11. *
  12. * Add your application-wide methods in the class below, your shells
  13. * will inherit them.
  14. *
  15. * @package app.Console.Command
  16. */
  17. class AppShell extends Shell {
  18. }