CommandHelper.php 216 B

123456789101112
  1. <?php
  2. namespace TestApp\Command\Helper;
  3. use Cake\Console\Helper;
  4. class CommandHelper extends Helper
  5. {
  6. public function output($args)
  7. {
  8. $this->_io->out('I am helping ' . implode(' ', $args));
  9. }
  10. }