SampleCommand.php 326 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Command;
  4. use Cake\Command\Command;
  5. use Cake\Console\Arguments;
  6. use Cake\Console\ConsoleIo;
  7. class SampleCommand extends Command
  8. {
  9. public function execute(Arguments $args, ConsoleIo $io)
  10. {
  11. $io->out('This is the main method called from SampleCommand');
  12. }
  13. }