I18mShell.php 916 B

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