Files
newznab-tmux/app/Console/Commands/NntmuxPopulateSteam.php
T
DariusIII d4651aef44 CS fixes
2023-03-23 14:10:17 +01:00

34 lines
603 B
PHP

<?php
namespace App\Console\Commands;
use Blacklight\Steam;
use Illuminate\Console\Command;
class NntmuxPopulateSteam extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'nntmux:populate-steam';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Populate Steam Apps table';
/**
* Execute the console command.
*/
public function handle(): void
{
$steam = new Steam();
$steam->populateSteamAppsTable();
}
}