MyShell.php 281 B

12345678910111213141516171819202122
  1. <?php
  2. App::uses('Shell', 'Console');
  3. /**
  4. */
  5. class MyShell extends Shell {
  6. /**
  7. * MyShell::name()
  8. *
  9. * @param bool $prependPlugin
  10. * @return string
  11. */
  12. public function name($prependPlugin = true) {
  13. $plugin = '';
  14. $name = $plugin . $this->name;
  15. return $name;
  16. }
  17. }