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
391 B
PHP
18 lines
391 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\TaskGroup;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
class TaskGroupRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, TaskGroup::class);
|
|
}
|
|
}
|