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
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user