1d50e5dcb3
Add Task, TaskStatus, TaskEffort, TaskPriority, TaskType, TaskGroup entities with Doctrine mappings and API Platform CRUD operations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
400 B
PHP
18 lines
400 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\TaskPriority;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
class TaskPriorityRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, TaskPriority::class);
|
|
}
|
|
}
|