chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\CampaignBundle\Entity\Result;
class CountResult
{
private int $count;
private int $minId;
private int $maxId;
public function __construct($count, $minId, $maxId)
{
$this->count = (int) $count;
$this->minId = (int) $minId;
$this->maxId = (int) $maxId;
}
public function getCount(): int
{
return $this->count;
}
public function getMinId(): int
{
return $this->minId;
}
public function getMaxId(): int
{
return $this->maxId;
}
}