12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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.');
- }
- }
|