/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/Storage
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/Storage/EntryQueryOptions.php (3053B)
batchId($request->batch_id)
->uuids($request->uuids)
->beforeSequence($request->before)
->tag($request->tag)
->familyHash($request->family_hash)
->limit($request->take ?? 50);
}
/**
* Create new entry query options for the given batch ID.
*
* @param string $batchId
* @return static
*/
public static function forBatchId(?string $batchId)
{
return (new static)->batchId($batchId);
}
/**
* Set the batch ID for the query.
*
* @param string $batchId
* @return $this
*/
public function batchId(?string $batchId)
{
$this->batchId = $batchId;
return $this;
}
/**
* Set the list of UUIDs of entries tor retrieve.
*
* @param array $uuids
* @return $this
*/
public function uuids(?array $uuids)
{
$this->uuids = $uuids;
return $this;
}
/**
* Set the ID that all retrieved entries should be less than.
*
* @param mixed $id
* @return $this
*/
public function beforeSequence($id)
{
$this->beforeSequence = $id;
return $this;
}
/**
* Set the tag that must belong to retrieved entries.
*
* @param string $tag
* @return $this
*/
public function tag(?string $tag)
{
$this->tag = $tag;
return $this;
}
/**
* Set the family hash that must belong to retrieved entries.
*
* @param string $familyHash
* @return $this
*/
public function familyHash(?string $familyHash)
{
$this->familyHash = $familyHash;
return $this;
}
/**
* Set the number of entries that should be retrieved.
*
* @param int $limit
* @return $this
*/
public function limit(int $limit)
{
$this->limit = $limit;
return $this;
}
}