Files
DatBrowser/app/Browser/Jobs/EldoradoRobuxPriceSentry/EldoradoRobuxOffer.php
Matthias Guillitte 5e6164016c
All checks were successful
Test, build and push image to registry / phpunit-tests (push) Successful in 3m25s
Test, build and push image to registry / build-image (push) Successful in 2m59s
Eldorado : Added the minimum stock threshold
It now look at all of the offers of the first page and select the one matching the criterias
2025-12-20 16:20:07 +01:00

22 lines
411 B
PHP

<?php
namespace App\Browser\Jobs\EldoradoRobuxPriceSentry;
class EldoradoRobuxOffer
{
public int $robuxStock;
public float $robuxPrice;
public int $listingIndex;
public function __construct(int $robuxStock, float $robuxPrice, int $listingIndex)
{
$this->robuxStock = $robuxStock;
$this->robuxPrice = $robuxPrice;
$this->listingIndex = $listingIndex;
}
}
?>