Work on inspiring command.

This commit is contained in:
Taylor Otwell 2014-08-01 00:46:47 -05:00
parent 9b00554990
commit 1a0b1cc08e
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
<?php
use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
@ -18,7 +19,7 @@ class InspireCommand extends Command {
*
* @var string
*/
protected $description = 'Display an inpiring quote..';
protected $description = 'Display an inpiring quote.';
/**
* Create a new command instance.
@ -37,7 +38,7 @@ public function __construct()
*/
public function fire()
{
$this->comment('Inspiring Quote Here.');
$this->comment(Inspiring::quote());
}
}