* removed unused teams from export order * added new paginator for query instead of querybuilder * added field hydrate enums * hide PARTIAL deprecation * never log deprecations in production * replaced InvoiceLoader with native Doctrine feature * prevent excessive permission queries * support loading customers of team * improved findByIds * internalized API * fix null string deprecations
67 lines
1.5 KiB
PHP
67 lines
1.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Repository\Paginator;
|
|
|
|
use Doctrine\ORM\Query;
|
|
use Doctrine\ORM\QueryBuilder;
|
|
|
|
/**
|
|
* @deprecated use QueryPaginator instead
|
|
* @implements PaginatorInterface<mixed>
|
|
*/
|
|
final class QueryBuilderPaginator implements PaginatorInterface
|
|
{
|
|
/**
|
|
* @param int<0, max> $results
|
|
*/
|
|
public function __construct(
|
|
private readonly QueryBuilder $queryBuilder,
|
|
private readonly int $results
|
|
)
|
|
{
|
|
}
|
|
|
|
public function getNbResults(): int
|
|
{
|
|
return $this->results;
|
|
}
|
|
|
|
/**
|
|
* @return iterable<array-key, mixed>
|
|
*/
|
|
public function getSlice(int $offset, int $length): iterable
|
|
{
|
|
/** @var Query<null, mixed> $query */
|
|
$query = $this->queryBuilder
|
|
->getQuery()
|
|
->setFirstResult($offset)
|
|
->setMaxResults($length);
|
|
|
|
return $this->getResults($query);
|
|
}
|
|
|
|
/**
|
|
* @param Query<null, mixed> $query
|
|
* @return iterable<array-key, mixed>
|
|
*/
|
|
private function getResults(Query $query): iterable
|
|
{
|
|
return $query->execute(); // @phpstan-ignore-line
|
|
}
|
|
|
|
/**
|
|
* @return iterable<array-key, mixed>
|
|
*/
|
|
public function getAll(): iterable
|
|
{
|
|
return $this->getResults($this->queryBuilder->getQuery());
|
|
}
|
|
}
|