Eldorado : Added the minimum stock threshold
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

It now look at all of the offers of the first page and select the one matching the criterias
This commit is contained in:
2025-12-20 16:20:07 +01:00
parent 48fdc2f6f0
commit 5e6164016c
5 changed files with 223 additions and 48 deletions

View File

@@ -0,0 +1,21 @@
<?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;
}
}
?>