12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- use Illuminate\Console\Command;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Input\InputArgument;
- class InspireCommand extends Command {
-
- protected $name = 'inspire';
-
- protected $description = 'Display an inpiring quote..';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function fire()
- {
- $this->comment('Inspiring Quote Here.');
- }
- }
|