3 namespace BookStack\Console\Commands;
5 use Illuminate\Console\Command;
6 use Illuminate\Foundation\Inspiring;
8 class Inspire extends Command
11 * The name and signature of the console command.
15 protected $signature = 'inspire';
18 * The console command description.
22 protected $description = 'Display an inspiring quote';
25 * Execute the console command.
29 public function handle()
31 $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);