created rental moons command as a placeholder

This commit is contained in:
2020-06-03 04:33:31 -05:00
parent d70ec78cae
commit 7e248c7055

View File

@@ -0,0 +1,42 @@
<?php
namespace App\Console\Commands\RentalMoons;
use Illuminate\Console\Command;
class AllianceRentalMoonsCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:name';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
}
}