Working on overall app structure.

This commit is contained in:
Taylor Otwell
2014-07-31 15:13:50 -05:00
parent a5001352e6
commit 0e0fd73b43
15 changed files with 226 additions and 113 deletions

0
app/commands/.gitkeep Normal file
View File

View File

@@ -0,0 +1,43 @@
<?php
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
class InspireCommand extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'inspire';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Display an inpiring quote..';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
$this->comment('Inspiring Quote Here.');
}
}