firefly-iii/app/Console/Commands/Inspire.php

38 lines
655 B
PHP
Raw Normal View History

2015-02-05 21:52:16 -06:00
<?php namespace FireflyIII\Console\Commands;
2015-02-05 21:39:52 -06:00
use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
2015-02-11 00:35:10 -06:00
/**
* Class Inspire
*
* @package FireflyIII\Console\Commands
*/
class Inspire extends Command
{
2015-02-05 21:39:52 -06:00
2015-02-11 00:35:10 -06:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'Display an inspiring quote';
/**
* The console command name.
*
* @var string
*/
protected $name = 'inspire';
2015-02-05 21:39:52 -06:00
2015-02-11 00:35:10 -06:00
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->comment(PHP_EOL . Inspiring::quote() . PHP_EOL);
}
2015-02-05 21:39:52 -06:00
}