Files
newznab-tmux/app/Services/GamesProcessor.php
T
2026-02-10 16:16:29 +01:00

27 lines
588 B
PHP

<?php
namespace App\Services;
use App\Models\Settings;
class GamesProcessor
{
/** @phpstan-ignore property.onlyWritten */
private bool $echooutput;
private GamesService $gamesService;
public function __construct(bool $echooutput, ?GamesService $gamesService = null)
{
$this->echooutput = $echooutput;
$this->gamesService = $gamesService ?? new GamesService;
}
public function process(): void
{
if ((int) Settings::settingValue('lookupgames') !== 0) {
$this->gamesService->processGamesReleases();
}
}
}