It now look at all of the offers of the first page and select the one matching the criterias
22 lines
411 B
PHP
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;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|