I18mShell.php 873 B

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