38 lines
994 B
PHP
38 lines
994 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\AuditLog;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<AuditLog>
|
|
*/
|
|
final class AuditLogRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, AuditLog::class);
|
|
}
|
|
|
|
/**
|
|
* @return list<AuditLog>
|
|
*/
|
|
public function findEntityHistory(string $entityType, string $entityId, int $limit = 100): array
|
|
{
|
|
return $this->createQueryBuilder('a')
|
|
->andWhere('a.entityType = :entityType')
|
|
->andWhere('a.entityId = :entityId')
|
|
->setParameter('entityType', $entityType)
|
|
->setParameter('entityId', $entityId)
|
|
->orderBy('a.createdAt', 'DESC')
|
|
->setMaxResults($limit)
|
|
->getQuery()
|
|
->getResult();
|
|
}
|
|
}
|
|
|