Work on inspiring command.
This commit is contained in:
parent
9b00554990
commit
1a0b1cc08e
|
@ -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());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue