src/Builder/CountEntries.php
<?php
namespace Squirrel\Entities\Builder;
use Squirrel\Entities\RepositoryReadOnlyInterface;
use Squirrel\Queries\Builder\BuilderInterface;
/**
* Count query builder as a fluent object - build query and return number
*/
class CountEntries implements BuilderInterface
{
/**
* @var array<int|string,mixed> WHERE restrictions in query
*/
private array $where = [];
/**
* @var bool Whether the SELECT query should block the scanned entries
*/
private bool $blocking = false;
public function __construct(
private RepositoryReadOnlyInterface $repository,
) {
}
/**
* @param array<int|string,mixed> $whereClauses
*/
public function where(array $whereClauses): self
{
$this->where = $whereClauses;
return $this;
}
public function blocking(bool $active = true): self
{
$this->blocking = $active;
return $this;
}
public function getNumber(): int
{
return $this->repository->count([
'where' => $this->where,
'lock' => $this->blocking,
]);
}
}