Akaunting/app/Console/Stubs/Modules/command.stub

33 lines
508 B
Plaintext
Raw Normal View History

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