| 1 | <?php |
||
| 9 | class LaravelCafebazaarConsole extends Command { |
||
| 10 | /** |
||
| 11 | * The name and signature of the console command. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $signature = 'Cafebazaar {action}'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The console command description. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $description = 'Cafebazaar console commands'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Create a new command instance. |
||
| 26 | * |
||
| 27 | */ |
||
| 28 | public function __construct() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Execute the console command. |
||
| 35 | * |
||
| 36 | * @return mixed |
||
| 37 | */ |
||
| 38 | public function handle() |
||
| 50 | } |