2018-11-06 15:27:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
2019-11-16 07:21:14 +00:00
|
|
|
namespace Akaunting\Module\Commands;
|
2018-11-06 15:27:16 +00:00
|
|
|
|
2020-06-11 20:32:13 +00:00
|
|
|
use App\Console\Commands\UninstallModule;
|
2018-11-06 15:27:16 +00:00
|
|
|
|
2020-06-11 20:32:13 +00:00
|
|
|
class DeleteCommand extends UninstallModule
|
2018-11-06 15:27:16 +00:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The name and signature of the console command.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
2020-06-11 20:32:13 +00:00
|
|
|
protected $signature = 'module:delete {alias} {company} {locale=en-GB}';
|
2018-11-06 15:27:16 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The console command description.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
2018-11-06 15:31:46 +00:00
|
|
|
protected $description = 'Delete the specified module.';
|
2018-11-06 15:27:16 +00:00
|
|
|
}
|