I18mShell.php 891 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * I18mShell file
  4. *
  5. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  6. * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  7. *
  8. * Licensed under The MIT License
  9. * For full copyright and license information, please see the LICENSE.txt
  10. * Redistributions of files must retain the above copyright notice
  11. *
  12. * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  13. * @link https://cakephp.org CakePHP(tm) Project
  14. * @since 3.0.8
  15. * @license https://opensource.org/licenses/mit-license.php MIT License
  16. */
  17. /**
  18. * SampleShell
  19. */
  20. namespace TestApp\Shell;
  21. use Cake\Console\Shell;
  22. class I18mShell extends Shell
  23. {
  24. /**
  25. * main method
  26. *
  27. * @return void
  28. */
  29. public function main()
  30. {
  31. $this->out('This is the main method called from I18mShell');
  32. }
  33. }