Initial commit: CloudOps infrastructure platform
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user