33 lines
508 B
Plaintext
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace $NAMESPACE$;
use Illuminate\Console\Command;
class $CLASS$ extends Command
{
/**
2020-10-17 14:53:24 +03:00
* The name and signature of the console command.
2017-09-14 22:21:00 +03:00
*
* @var string
*/
2020-10-17 14:53:24 +03:00
protected $signature = '$COMMAND_NAME$';
2017-09-14 22:21:00 +03:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description.';
/**
* Execute the console command.
*
* @return mixed
*/
2019-11-16 10:21:14 +03:00
public function handle()
2017-09-14 22:21:00 +03:00
{
//
}
}