mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
25 lines
632 B
PHP
25 lines
632 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Jobs\ResolveDependenciesJob;
|
|
use App\Jobs\ResolveSptVersionsJob;
|
|
use Illuminate\Console\Command;
|
|
|
|
class ResolveVersionsCommand extends Command
|
|
{
|
|
protected $signature = 'app:resolve-versions';
|
|
|
|
protected $description = 'Resolve SPT and dependency versions for all mods';
|
|
|
|
public function handle(): void
|
|
{
|
|
ResolveSptVersionsJob::dispatch()->onQueue('default');
|
|
ResolveDependenciesJob::dispatch()->onQueue('default');
|
|
|
|
$this->info('ResolveSptVersionsJob and ResolveDependenciesJob have been added to the queue');
|
|
}
|
|
}
|