This commit is contained in:
2025-08-03 22:42:14 +02:00
parent d7a36aca4c
commit 67767310d3
16 changed files with 532 additions and 45 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace App\Repository;
use App\Entity\ProjectTimeline;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<ProjectTimeline>
*/
class ProjectTimelineRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, ProjectTimeline::class);
}
}