Stub out some folders for jobs / commands and events.

This commit is contained in:
Taylor Otwell
2014-12-27 16:45:11 -06:00
parent 3cfe2a0c85
commit dc384fe1f5
8 changed files with 54 additions and 25 deletions

View File

@@ -21,22 +21,12 @@ class InspireCommand extends Command {
*/
protected $description = 'Display an inspiring quote';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
public function handle()
{
$this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
}