Files
w4rpservices/app/Console/Commands/MiningTaxes/MiningTaxesLedgers.php

43 lines
720 B
PHP

<?php
namespace App\Console\Commands\MiningTaxes;
use Illuminate\Console\Command;
class MiningTaxesLedgers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'MiningTax:Ledgers';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Start getting the mining ledgers.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
return 0;
}
}