help.php 559 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php namespace Laravel\CLI\Tasks;
  2. use Laravel\Str;
  3. use Laravel\File;
  4. class Help extends Task {
  5. /**
  6. * List
  7. *
  8. * @param array $arguments
  9. * @return void
  10. */
  11. public function commands()
  12. {
  13. $command_data = json_decode(file_get_contents(__DIR__.'/help.json'));
  14. $i=0;
  15. foreach($command_data as $category => $commands)
  16. {
  17. if($i++ != 0) echo PHP_EOL;
  18. echo PHP_EOL . "# $category" . PHP_EOL;
  19. foreach($commands as $command => $details)
  20. {
  21. echo PHP_EOL . str_pad($command, 20) . str_pad($details->description, 30);
  22. }
  23. }
  24. }
  25. }