add commands to readme

and re-name commands
This commit is contained in:
hackerESQ
2024-09-06 22:26:54 -05:00
parent e9ec079ff9
commit e9fb0d0b6f
8 changed files with 76 additions and 6 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
namespace App\Console\Commands;
use App\Models\Holding;
use Illuminate\Console\Command;
class SyncDailyChange extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'sync:daily-change';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Re-calculates daily snapshots of your portfolio\'s daily performance. Use discretion as this is a resource intensive command.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
//
}
}