Files
newznab-tmux/app/Services/GamesProcessor.php
T
DariusIII 97a9e32b76 CS fixes
2025-08-15 13:03:18 +02:00

24 lines
412 B
PHP

<?php
namespace App\Services;
use App\Models\Settings;
use Blacklight\Games;
class GamesProcessor
{
private bool $echooutput;
public function __construct(bool $echooutput)
{
$this->echooutput = $echooutput;
}
public function process(): void
{
if ((int) Settings::settingValue('lookupgames') !== 0) {
(new Games)->processGamesReleases();
}
}
}