| 12345678910111213141516 |
- <?php
- declare(strict_types=1);
- namespace TestApp\Command;
- use Cake\Command\Command;
- use Cake\Console\Arguments;
- use Cake\Console\ConsoleIo;
- class SampleCommand extends Command
- {
- public function execute(Arguments $args, ConsoleIo $io)
- {
- $io->out('This is the main method called from SampleCommand');
- }
- }
|