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