19 lines
426 B
PHP
19 lines
426 B
PHP
<?php
|
|
|
|
namespace App\Tech\Repository;
|
|
|
|
use App\Tech\Entity\EmailLog;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<EmailLog>
|
|
*/
|
|
class EmailLogRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, EmailLog::class);
|
|
}
|
|
}
|