Commit 1a0b1cc0 authored by Taylor Otwell's avatar Taylor Otwell

Work on inspiring command.

parent 9b005549
<?php <?php
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputArgument;
...@@ -18,7 +19,7 @@ class InspireCommand extends Command { ...@@ -18,7 +19,7 @@ class InspireCommand extends Command {
* *
* @var string * @var string
*/ */
protected $description = 'Display an inpiring quote..'; protected $description = 'Display an inpiring quote.';
/** /**
* Create a new command instance. * Create a new command instance.
...@@ -37,7 +38,7 @@ class InspireCommand extends Command { ...@@ -37,7 +38,7 @@ class InspireCommand extends Command {
*/ */
public function fire() public function fire()
{ {
$this->comment('Inspiring Quote Here.'); $this->comment(Inspiring::quote());
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment