Esempio n. 1
0
 public function getProcessedHelp()
 {
     $name = parent::getName();
     $replace = ['%command.name%' => $name, '%command.full_name%' => $_SERVER['PHP_SELF'] . ' ' . $name, '%command.bin%' => $this->getLaravel()->getSlug() . ' ' . $name];
     return str_replace(array_keys($replace), array_values($replace), $this->getHelp() ?: $this->getDescription());
 }